Hi,
I've been having a problem binding a ListView to an Object using LINQ. It's best explained with a testcase I've created:
C#:
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
namespace WpfApplication1
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
}
public class MySubClass {
public string subtitle;
}
public class MyClass
{
public string title;
public MySubClass subclass;
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
MySubClass sub = new MySubClass();
sub.subtitle = "This is the subtitle";
MyClass cls = new MyClass();
cls.title = "This is the title";
cls.subclass = sub;
ObservableCollection<MyClass> mylist = new ObservableCollection<MyClass>();
mylist.Add(cls);
mylist.Add(cls);
listView1.ItemsSource = (from c in mylist select new List<MyClass> {c}).ToList();
label1.Content = listView1.Items.Count.ToString();
}
}
}
XAML:
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300" Loaded="Window_Loaded">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<ListView ItemsSource="{Binding}" Name="listView1" Height="200" Grid.Row="0">
<ListView.View>
<GridView>
<GridViewColumn Header="Title" Width="80" DisplayMemberBinding="{Binding Path=title}" />
<GridViewColumn Header="Subtitle" Width="80" DisplayMemberBinding="{Binding subclass.subtitle}" />
</GridView>
</ListView.View>
</ListView>
<Label Name="label1" Grid.Row="1" ></Label>
</Grid>
</Window>
When run, I'd expect this code to show the title and subtitle properties in the listview. It doesn't, but the listview Count() is correctly shows that it has 2 items. I think i'm binding to the wrong property.... should I be using a different syntax in the binding?
Thanks, Ian