Created
November 21, 2018 12:21
-
-
Save facilita-tecnologia/0719692c797453395a55d6619437305d to your computer and use it in GitHub Desktop.
CamboBox Personalizado
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ComboboxItem | |
{ | |
public string Text { get; set; } | |
public object Value { get; set; } | |
public decimal Valor { get; set; } | |
public string Valor_String { get; set; } | |
public int Valor_inteiro { get; set; } | |
public string Descricao { get; set; } | |
public override string ToString() | |
{ | |
return Text; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment