Top "Virtualmode" questions

How to find out which DataGridView rows are currently onscreen?

In my C# (2010) application I have a DataGridView in Virtual Mode which holds several thousand rows. Is it possible to …

c# datagridview virtualmode
Default implementation for ListView OwnerDraw

I have a ListView where I wish to tweak the drawing of items (for example highlighting certain strings in list …

c# winforms listview virtualmode
implementing virtual mode for a datagridview that is databound

A general question for advice on the implementation. I've got a collection bound to a datagridview. BindingList<Line> …

c# .net data-binding datagridview virtualmode
Cannot access the selected items collection when the ListView is in virtual mode?

I have a ListView in Virtual Mode. I wanna to access SelectedItems property. But when I use ListView1.SelectedItems , I …

c# listview selecteditem virtualmode
How to sort ListView items when ListView is in VirtualMode?

I realize i have to sort the collection where the ListView gathers the items from: ListView listCollection = new ListView(); But …

c# listview sorting virtualmode