I'm trying to create a simple 2 column listview in WPF, but i have hit a brick wall.
I have the Xaml:
<ListView x:Name="asas" Height="220" Margin="10,90,10,0" VerticalAlignment="Top" ItemsSource="{Binding Path=missionCollection}">
<ListView.View>
<GridView>
<GridViewColumn Width="140" Header="Name" DisplayMemberBinding="{Binding Path=name}"/>
<GridViewColumn Width="140" Header="Folder" DisplayMemberBinding="{Binding Path=id}"/>
</GridView>
</ListView.View>
</ListView>
and the C# code:
public readonly ICollection<Mission> missionCollection = new ObservableCollection<Mission>();
foreach (var campaign in campaigns)
{
if(campaign.id != "c1")
continue;
foreach(Mission mission in campaign.missionList)
missionCollection.Add(mission);
}
This C# code is in the same window.
My problem is that the listview seems to be determined not to update when i add something to the binding.
I have read a lot of other questions regarding this, but none of the solutions i have found seemed to help me.
I was following this page: http://www.switchonthecode.com/tutorials/wpf-tutorial-using-the-listview-part-1