Tagged Questions
5
votes
1answer
211 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?
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
2answers
377 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
2answers
826 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
2answers
39 views
How to tell when somebody is reading an item from a CollectionBase
I'm not sure if this is possible using a CollectionBase class. I'd like to know when somebody is accessing an item in a CollectionBase class.
The final goal is to create a "VirtualMode" (similar to ...
1
vote
2answers
208 views
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 find out which cells are onscreen at the moment?
1
vote
1answer
276 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, ...
0
votes
1answer
19 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
2answers
142 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
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
1answer
588 views
ListView [VirtualMode] change selected index
VirtualMode = true
MultiSelect = false
I can get selected index item, but how change it?
SelectedIndices readonly.
0
votes
1answer
931 views
Disable controls on certain items in DataRepeater control
I'm using the DataRepeater control from the Visual Basic Power Pack in my C# Winforms application. The control is unbound, operating in VirtualMode.
I'm displaying multiple items in this control. ...
0
votes
4answers
680 views
C# Exception when retrieving rows from a datagrid in virtual mode
I keep getting an exception (see below) when I retrieve a list of rows from a Virtual Mode datagrid, this only happens when I have more rows than I can display on screen and it doesn't happen every ...
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.
-1
votes
3answers
800 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 ...