Selecting a ListView Row Programmatically

  • Thread starter Thread starter Marc W.
  • Start date Start date
M

Marc W.

Is there any way to do this? It would seem like it would be pretty obvious,
but I can't find a method that does this.

Thanks,
Marc
 
you have to use the "Selected" property of the "ListViewItem" object like thi

listView.Items.Selected = true;
 
Back
Top