Tagged Questions
4
votes
3answers
563 views
WinForms ListView draws HELL SLOW in Windows 7 Compared to XP
I'm using ListView in VirtualMode and Details View with small icons.
This ListView have like 100,000 items inside.
The problem is that drawing this listview is much slower in Windows 7 compared to ...
3
votes
1answer
1k views
How do I update a WinForms ListView when using VirtualMode=True?
I have an app with a large ListView which is terribly slow so I'm implementing VirtualMode. MSDN does not seem to cover how I would add and delete new items in the middle of the listview.
For ...
2
votes
0answers
80 views
DataGridView, Virtual Mode and “lags”
My code looks as follows:
private void dataGridView4_CellValueNeeded(object sender, DataGridViewCellValueEventArgs e)
{
Records recordsTmp = null;
recordsTmp = ...
2
votes
1answer
4k views
How do I populate a ListView in virtual mode asynchronously?
I'd like to display records from our database in a listview - but retrieves can take a long time. I can use RetrieveVirtualItem to tell me when a new ListViewItem is needed, add a dummy item, and ...
0
votes
1answer
20 views
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 view itmes), however I don't want to radically alter the way that items are displayed.
I ...
0
votes
0answers
431 views
C# DataGridView Virtual mode with delayed data delivery
I have a problem with a DataGridView. I try using it in virutal mode, and if I fill the data in the getCellValue method, it works. However, I can not feed the data there - I dont (and cant) have a ...
0
votes
0answers
74 views
Why does reading metafile images during the cachevirtualitems event (virtualized listview) seem to trigger that event again?
I want to display a large list of images (some are metafiles) in a listview in large-icon view, so I set the listview's VirtualMode property to true so I can avoid loading the entire list of images in ...
0
votes
5answers
3k views
How to change the row position of virtual mode DataGridView?
How to change the row position of virtual mode DataGridView?
I am using Windows Forms.