python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
WPF ListView: binding a nested property to GridViewColumn.DisplayMemberBinding throws exception "BindingExpression path error"
Within a ListView I have a GridViewColumn which I am trying to bind a nested property to its DisplayMemberBinding attribute:
<ListView x:Name="myListView"
...

Willy
Votes: 0
Answers: 0
WPF Converter: Unable to cast object of type 'System.Int32' to type 'System.Windows.Controls.ListViewItem'
In a GridViewColumn I have below converter:
<GridViewColumn Header="Number"
DisplayMemberBinding="{Binding (ItemsControl.AlternationIndex),
...

Willy
Votes: 0
Answers: 1
Images contained in the buttons disappear after adding a new item to the WPF listview
Within a GridViewColumn in a listView I have three buttons (delete, move up and move down item) in the same column. Delete button will always be shown. However Move Up and Move down buttons are collap...

Willy
Votes: 0
Answers: 1
Get CellTemplate binding from GridViewColumn
So, I have this ListView that needs to use some custom compare functions depending on what is bound.
Right now the only solution I have found so far is to have a custom property to declare (SortablePr...
Jonas Lindahl
Votes: 0
Answers: 1