11

我有一个ObservableCollection<Object>包含两种不同类型的。

我想将此列表绑定到 ListBox 并为遇到的每种类型显示不同的 DataTemplates。我不知道如何根据类型自动切换数据模板。

我曾尝试使用 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));
    }
}
4

2 回答 2

6

您必须使用DataTemplateSelector。有关示例,请参见此处。

MSDN上的其他信息

于 2010-08-03T20:36:44.100 回答
6

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

问题很可能是您没有在引用 CLR 命名空间和程序集的 XAML 中创建命名空间声明。您需要在 XAML 的顶级元素中添加如下内容:

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

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

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

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

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

于 2010-08-04T00:56:48.327 回答