从WPF ListBox中的单个列表中显示多个类型?

时间:2010-08-03 20:31:19

标签: c# wpf data-binding itemtemplate

我有ObservableCollection<Object>,其中包含两种不同的类型。

我想将此列表绑定到ListBox,并为遇到的每种类型显示不同的DataTemplate。我无法弄清楚如何根据类型自动切换数据模板。

我试图使用DataTemplate的DataType属性并尝试使用ControlTemplates和DataTrigger,但无济于事,无论是什么都没有显示,或者声称它无法找到我的类型......

以下示例尝试:

我现在只有一个数据模板连接到ListBox,但即使这样也不起作用。

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">
<Window.Resources>
    <DataTemplate x:Key="PersonTemplate">
        <TextBlock Text="{Binding Path=Name}"></TextBlock>
    </DataTemplate>

    <DataTemplate x:Key="QuantityTemplate">
        <TextBlock Text="{Binding Path=Amount}"></TextBlock>
    </DataTemplate>

</Window.Resources>
<Grid>
    <DockPanel>
        <ListBox x:Name="MyListBox" Width="250" Height="250" 
ItemsSource="{Binding Path=ListToBind}"
ItemTemplate="{StaticResource PersonTemplate}"></ListBox>
    </DockPanel>
</Grid>
</Window>

代码背后:

public class Person
{
    public string Name { get; set; }

    public Person(string name)
    {
        Name = name;
    }
}

public class Quantity
{
    public int Amount { get; set; }

    public Quantity(int amount)
    {
        Amount = amount;
    }
}

public partial class Window1 : Window
{
    ObservableCollection<object> ListToBind = new ObservableCollection<object>();

    public Window1()
    {
        InitializeComponent();

        ListToBind.Add(new Person("Name1"));
        ListToBind.Add(new Person("Name2"));
        ListToBind.Add(new Quantity(123));
        ListToBind.Add(new Person("Name3"));
        ListToBind.Add(new Person("Name4"));
        ListToBind.Add(new Quantity(456));
        ListToBind.Add(new Person("Name5"));
        ListToBind.Add(new Quantity(789));
    }
}

2 个答案:

答案 0 :(得分:6)

您必须使用DataTemplateSelector。有关示例,请参阅here

关于MSDN

的附加信息

答案 1 :(得分:6)

你说“它声称它无法找到我的类型。”这是你应该解决的问题。

问题很可能是你没有在XAML中创建引用你的CLR命名空间和程序集的命名空间声明。你需要在XAML的顶级元素中添加这样的东西:

xmlns:foo="clr-namespace:MyNamespaceName;assembly=MyAssemblyName"

执行此操作后,XAML将知道XML命名空间前缀foo的任何内容实际上是MyAssemblyName命名空间中MyNamespaceName中的一个类。

然后,您可以在创建DataTemplate的标记中引用该XML命名空间:

<DataTemplate DataType="{foo:Person}">

你当然可以构建一个模板选择器,但这会为你的软件添加一些不需要的东西。在WPF应用程序中有一个模板选择器的位置,但这不是它。