Tagged Questions

5
votes
1answer
217 views

VirtualMode in Gtk.ListStore?

I'm looking for a feature within the Gtk.ListStore that working like the ListView.VirtualMode in Winforms. Is there something like that?
4
votes
3answers
591 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
2answers
406 views

Focus an item in ListView with VirtualMode enabled

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 ...
2
votes
3answers
254 views

Looking for UI library for .NET and Mono

I'm looking for a UI library for .NET and Mono, something like Gtk#, but with support for 64-bit (on Windows too), and with some widget like WinForm's ListView, with VirtualMode. I don't want to use ...
2
votes
2answers
858 views

C# ListView in VirtualMode flickers when the selected item is not visible

I know it sounds complicated to reproduce but please follow me: You have a ListView in VirtualMode = true. Select an item, scroll down so that the item selected gets outside the visual area and then ...
2
votes
3answers
3k views

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 this doesn't seem to work unless the ListView is added as a ...
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 ...
1
vote
1answer
318 views

How to show icon on all listview items in virtual mode (C#)

I'm using virtual mode of listview to show a larg data. But I don't know how to show image for each item. Who can help me ? I wrote private void ListContact_RetrieveVirtualItem(object sender, ...
1
vote
1answer
633 views

ListView [VirtualMode] change selected index

VirtualMode = true MultiSelect = false I can get selected index item, but how change it? SelectedIndices is readonly.
0
votes
3answers
81 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
30 views

When should I call AutoResizeColumns for a virtual ListView?

I'm setting up a virtual ListView in details mode, and I'd like its columns to automatically resize so as to not truncate the text of the currently visible items. Calling AutoResizeColumns works ...
0
votes
2answers
156 views

How to enumerate a ListView when it is in virtual mode?

How to enumerate a ListView when it is in virtual mode ? I'm using OfType<>() method to enumerate the list view items. But its throwing an exception like, the list view can not be enumerated ...
0
votes
1answer
409 views

VB.NET Using ListViewGroup in VirtualMode

Is it possible to use groups in a ListView which is in VirtualMode? Thanks
0
votes
1answer
63 views

Is there a workaround for Linux mono's refusal to acknowledge that I have resized the columns of my VirtualMode ListView?

When I resize a column, it does not redraw the data with the updated alignment. I've tried Invalidating, Refreshing, and a few other things. Nothing has worked. Does anyone know a workaround? I ...
0
votes
1answer
298 views

Is WinForms ListView in VirtualMode limited to 100,000,000 rows?

I have some grid scenario with > 500,000,000 rows I would like to display in ListView. If I artificially limit my ListView to display 100,000,000: _listView.VirtualListSize = _data.Count; if ...
-1
votes
3answers
875 views

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 receive the following Exception : Cannot access the selected items collection ...