0
I have a difficulty regarding the combobox, I need to set a specific value for visualization, as if it were the function of visualization of an existing record, the value will be in the variable that I passed as parameter to the function; after feeding the combobox.
private void PreencherDados(Produto produto)
{
edtCodigo.Text = produto.Codigo.ToString();
edtDescricao.Text = produto.Descricao.ToString();
GruposNegocio gruposNegocio = new GruposNegocio(null);
cbGrupo.Items.Clear();
/*Alimentacao combobox, conforme o retorno do banco de dados*/
foreach (DataRow item in gruposNegocio.Pesquisar().Rows)
{
Grupos grupos = new Grupos();
grupos.Codigo = Convert.ToDouble(item["CODIGO"].ToString());
grupos.Descricao = item["DESCRICAO"].ToString();
cbGrupo.Items.Add(grupos);
}
/* Neste momento preciso coletar o valor que vem da variavel produto.descrição, e setar o index da mesma no combobox*/
cbGrupo.SelectedIndex = ;
}