【发布时间】:2009-02-22 19:40:13
【问题描述】:
我在使用 LINQ 将 ListView 绑定到对象时遇到问题。最好用我创建的测试用例来解释:
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>
运行时,我希望这段代码在列表视图中显示标题和副标题属性。它没有,但 listview Count() 正确显示它有 2 个项目。我想我绑定到了错误的属性……我应该在绑定中使用不同的语法吗?
谢谢, 伊恩
【问题讨论】:
标签: c# linq data-binding xaml