11
votes
2answers
2k views
Dictionary<T> of List<T> and ListViews in ASP.NET
Preamble
I'm asking this question because even though I've read through a lot of ListView resources, I'm still not 'getting' it.
Background
I have a bunch of Foo's that have a list of items …
8
votes
1answer
2k views
WPF ListView Inactive Selection Color
I'm creating a WPF application where several ListView selections are made in a row (similar to the iTunes browser). The problem is that the default inactive selection color is too light. (see below)
…
7
votes
1answer
4k views
WPF: ListBox vs. ListView - how to choose for data binding
I'm considering either a ListBox or a ListView for a WPF application. It seems either supports data binding and item templates. My application has a simple list of items that I intend to be able to …
6
votes
2answers
2k views
WPF ListView: Attaching a double-click (on an item) event
I have the following ListView:
<ListView Name="TrackListView">
<ListView.View>
<GridView>
<GridViewColumn Header="Title" Width="100" …
6
votes
2answers
2k views
WPF ListView Very Slow Performance - Why? (ElementHost, or Other Reason?)
I have a Windows Forms app, that has a single ElementHost containing a WPF UserControl... in my WPF, I have a VERY simple ListView:
<ListView Margin="4" ItemsSource="{Binding Notifications}">
…
5
votes
2answers
1k views
ListView DataItem Shows Null
A few days ago, I wrote about issues with implementing a ListView in ASP.NET. Now, with all of the other code written, I'm having trouble saving changed items in a ListView.
A few things of note:
…
5
votes
2answers
884 views
How do I get the header height of a Listview - c#
Can sombody tell me how to get the header height of a list view.
Thanks
5
votes
2answers
2k views
ListView with DataPager not working
From everything I've read, it seemed that adding paging to a ListView control should be dead simple, but it's not working for me. After adding the ListView and DataPager controls to the form and …
5
votes
4answers
997 views
Displaying an IGrouping<> with nested ListViews
I need to retrieve a set of Widgets from my data access layer, grouped by widget.Manufacturer, to display in a set of nested ASP.NET ListViews.
The problem is that (as far as I can tell) the nested …
5
votes
3answers
1k views
Win32 List-View Control SubItem padding for custom-drawn SubItems?
When using custom-draw (NM_CUSTOMDRAW) to draw the entire contents of a ListView SubItem (in Report/Details view), it would be nice to be able to apply the same left and right
padding in my custom …
4
votes
4answers
399 views
(WPF) Animate ListView item move
I would like to have an animation when an item in ListView changes position, so it would slowly move to the new position. Either in a template or in code.
I've tried descending from a …
4
votes
3answers
1k views
Best way to make WPF ListView/GridView sort on column-header clicking?
There are lots of solutions on the internet attempting to fill this seemingly very-basic omission from WPF. I'm really confused as to what would be the "best" way. For example... I want there to be …
4
votes
3answers
702 views
Force resize of GridView columns inside ListView
I have a ListView WPF control with GridView which I'd like to resize the GridView columns, when the content of the columns changes. I have several distinct data sets but when I change from one to …
4
votes
2answers
866 views
Resizing font in WPF list or grid to use space properly
I have an application that displays league tables for sporting leagues. These tables are basically grids with different columns representing statistics for each team such as matches played, won, lost, …
4
votes
2answers
1k views
WPF ListView Databound Drag/Drop Auto Scroll
Hi there, I've been working with Bea's solution here for a while and finding it very helpful. Problem now I'm having is when I drag-n-drop items within or to another ListView control and I want to …
