Hi,
You set HideSelection property to false - this will always show selected item. You can do this from the code:
private void Form1_Load_1(object sender, EventArgs e) { this.listView1.HideSelection = false; }
or from Properties of ListView.
Cheers, Jakub G
|