0

我有这个 SQL 表列表

1 Guilherme
2 Alejandro
3 Thiago

我使用此代码填充我的组合框1

da1.Fill(dt1);
BindingSource src = new BindingSource();
src.DataSource = dt1;
comboBox1.DataSource = src;
comboBox1.ValueMember = "ntj_id";
comboBox1.DisplayMember = "ntj_descricao";

这很好地填充了组合框1,现在我希望当组合框打开时,它会突出显示 value alejandro。我试过这个:

int abre = comboBox1.FindString("Alejandro"); 
comboBox1.SelectedItem  = abre;

但是当我写这个或这个时:

comboBox1.SelectedIndex = abre;

组合框打开并突出显示实际值。

4

0 回答 0