To automatically select the first item in the list, you can use
this.listView1.Items[0].Selected = true; but this method chooses it and goes to the next form. And how easy it is to mark an element and that's it.
To automatically select the first item in the list, you can use
this.listView1.Items[0].Selected = true; but this method chooses it and goes to the next form. And how easy it is to mark an element and that's it.
Source: https://ru.stackoverflow.com/questions/833292/
All Articles