Skip to content

Instantly share code, notes, and snippets.

@facilita-tecnologia
Created November 21, 2018 12:21
Show Gist options
  • Save facilita-tecnologia/0719692c797453395a55d6619437305d to your computer and use it in GitHub Desktop.
Save facilita-tecnologia/0719692c797453395a55d6619437305d to your computer and use it in GitHub Desktop.
CamboBox Personalizado
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