Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Windows 窗体中有一个列表视图。_listView1. 我希望以编程方式在列表视图中选择一个项目。我说_listView1.Items[i].Select=true;
_listView1
_listView1.Items[i].Select=true;
但这并不能解决问题。该项目没有被选中。
该属性是Selected,不是Select:
Selected
Select
_listView1.Items[i].Selected = true;
试试这个:_listView1.selectedIndex = i;
只使用ListViewItem.Selected属性;
ListViewItem.Selected
获取或设置一个值,该值指示项目是否被选中。