0
votes
2answers
48 views
Best way to manage ListViewItems in a Detailed ListView?
I've adopted the following pattern for putting ListViewItems in a ListView with multiple columns (when I want to display information about a list of MyObject types), and I'm just c …
0
votes
1answer
48 views
How to delete a ListViewItem when bound to a DataView
How do I delete a selected ListViewItem from a WPF ListView when the ItemsSource is set to a DataView? I can get the ListViewItem that was selected and then how do remove the actu …
0
votes
2answers
49 views
How to get ListViewItem under MouseCursor while dragging sth. over it
Hi SO-followers,
I'm implementing drag & drop on a ListView. I already managed to get the ListViewItem under the cursor when dropping on it but I would like to get the ListVie …
0
votes
1answer
44 views
Populating a ListView in a multithreaded app
I need to retrieve a set of data from a database, then populate a ListView with the data. I understand multithreaded form controls and the proper techniques for updating controls …
0
votes
0answers
34 views
How to Apply Cosplan in WPF ListView Which Implements GridView columns
Hi,
I am very new to WPF World. I have a ListView with Number of Columns. I wanted to apply Colspan for the last three columns (Only a single column header for the last Three colu …
0
votes
5answers
267 views
C# ListView: ListViewItem offset possible?
I was wondering... I have a WinForms System.Windows.Forms.ListView with a bunch of ListViewItems that I'm drawing using the View.List style. Each ListViewItem has a "SmallIcon" tha …
1
vote
1answer
92 views
Only change a ListViewItem’s Checked state if the checkbox is clicked
By default, double-clicking a ListViewItem toggles its Checked state. I only want the Checked state to be changed by clicking an the item's checkbox or pressing the space bar whil …
0
votes
1answer
198 views
How to read the subitem values from a WPF/XAML ListView?
Hi!
Enough is enough - I've just spent an hour searching around trying to find out how to read the ListViewSubItem values (if that's correct terminology in XAML) from a ListView. …
1
vote
1answer
454 views
WPF ListView - how to add items programmatically?
Even if I know it's not ideal - I need to programmatically populate a listView (for whatever reason).
I am declaring my columns in the markup:
<ListView.View>
…
1
vote
1answer
210 views
How to get the items and subitems in a listview?
Hello,
I want to get all items and subitems in my listview,but all I get is "TlistItem"
Here's my code:
procedure TFrameAnalyzer.AddEntry(opcode:word;data:Array of byte;directio …
1
vote
3answers
656 views
Determining which ListViewItem was clicked on in a ListView when executing a ContextMenu MenuItem
I'm trying to use the context menu in a listview to run some code that requires data from which item it originated from.
I initially just did this:
XAML:
<ListView x:Name …
1
vote
7answers
193 views
Is there an easy way to associate an event with a ListViewItem?
I have a WinForms ListView, obviously containing ListViewItems. I'd like to be able to attach a click event to each item, instead of to the entire ListView (and then trying to figu …
0
votes
1answer
120 views
How do I access ListViewItem?
The Items collection of a ListView contains the actual business objects. How do I obtain the corresponding ListViewItem given a business object (SelectedItem)?
0
votes
1answer
115 views
ListViewItem generating “The given key was not present in the dictionary.” error
How can
ItemCheckedEventArgs.Item.Selected = ItemCheckedEventArgs.Item.Checked
generate "The given key was not present in the dictionary." ??
0
votes
1answer
479 views
Listview selection color
I'm playing around with wpf and I saw the following article:
http://stackoverflow.com/questions/382006/wpf-listview-inactive-selection-color
I want to do something similar. I want …
