如何判断单元格数值 与 comboBox1的默认值 相等
如上图: comboBox1的选项有且只有1个,具体数值根据随机生成,范围在0~99
如何判断:
某个单元格数值 与 comboBox1的默认值 相等呢
DataGrid.Cell(r, 6).Text == comboBox1.SelectedItem
DataGrid.Cell(r, 6).IntergerValue == comboBox1.SelectedItem
注:DataGrid.Cell(r, 6).Text,DataGrid.Cell(r, 6).IntergerValue 是第三方控件的表达方式,是正确的,忽略。
如何写判断等式的右边呢?谢谢
------解决方案--------------------DataGrid.Cell(r, 6).Text == comboBox1.Item[0].ToString()
------解决方案--------------------DataGrid.Cell(r, 6).Text == comboBox1.Items[0].ToString()