在列表视图行中编辑特定记录时,如何将该值输入相应的组合框选定项目/值?
组合框处于下拉列表样式模式,因此所选文本无效。
我试过这个:
cbBrand.SelectedItem = lvMain.SelectedItems[0].SubItems[1].ToString();
但是我在相应的组合框选择中得到null
...... :(
答案 0 :(得分:1)
我得到了这样的工作:
int xcb;
xcb = this.cbBrand.FindString(lvMain.SelectedItems[0].SubItems[1].Text);
this.cbBrand.SelectedIndex = xcb;
答案 1 :(得分:0)
您可以使用SelectedValue属性。