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;