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?
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 ...
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 ...