Tagged Questions
1
vote
1answer
303 views
How to limit selection background color to item width in WPF ListView?
How can I make the selection color (blue here) stop at the end of the filename instead of going all the way to the edge of the ListView?
I put the orange background on the item StackPanel to show ...
0
votes
1answer
545 views
WPF list view performance - static vs. databound items
I have two simple examples to demonstrate my problem.
When I run scenario 1, I am able to navigate the list view as normal, using the extended selection mode to choose items.
When I run scenario 2, ...
0
votes
1answer
723 views
WPF Listview - binding a text column to a combobox column selected item
I have a Listview:
<ListView ItemsSource="{Binding FieldMap.SourceTargetFieldMap, Mode=Default}">
<ListView.View>
<GridView>
<GridViewColumn ...