tags:

views:

220

answers:

2

C#: Is there a way to SET the selected index of an item in listview at runtime?

+1  A: 

Find the item in the collection you want selected and set its public property Selected = true.

Will
A: 

Try this

listView.SelectedIndices.Clear();
listView.SelectedIndices.Add(someIndex);
JaredPar