I have a ListView in VirtualMode.

I need a way to set focus to specific item.

The FocusedItem is not good for the VirtualMode, I need a way to set FocusedIndex or something like that, but didn't see any property like that.

Thanks.

link|improve this question

42% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You have to set the Focused property on the ListViewItem directly.

So, to set the 11th row to be focused:

this.lvVirtual.Items[10].Focused = true;
link|improve this answer
I once tried to change the icon of a virtual item this way without success, and then stopped use .Items to access virtual items. Thanks for the example, worked for me! :) – DxCK Jan 14 '11 at 10:39
feedback

As it has been said ListView is in VirtualMode. Items collection is not accessible here.

Try to raise an event VirtualItemsSelectionRangeChanged

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.