如何显示在动态内部创建的组合框单元格的第一个元素DatGridView
,按照我们可以设置的普通组合框
ComboBox1.SelectedIndex = 0;
但是这种情况不适用于 DataGridViewComboBoxCell,我创建了组合框单元格,如下面的代码所示,并且我正在向内部循环添加值..
DataGridViewComboBoxCell global_inhibits = new DataGridViewComboBoxCell();
for (int j = 0; j < Class_INHV.global_inhibts.Count; j++)
global_inhibits.Items.Add(Class_INHV.global_inhibts[j]);
谁能告诉我如何显示默认添加的第一个元素?