ItemsControl忽略参考资料中的DataTemplates

时间:2015-05-05 08:05:04

标签: c# wpf xaml datatemplate itemscontrol

我想将多个类型的集合绑定到canvas中显示的ItemsControl。到目前为止,我的代码如下:

<ItemsControl ItemsSource="{Binding Path=Objects}">
     <ItemsControl.Resources>
         <DataTemplate DataType="self:CalibrationRectangle">
             <Rectangle Fill="{Binding Path=Color, Converter={StaticResource ColorToBrushConverter}}" Width="{Binding Width}" Height="{Binding Height}" />
         </DataTemplate>
         <DataTemplate DataType="self:PolygonVM">
             <Polygon Fill="{Binding Path=Color, Converter={StaticResource ColorToBrushConverter}}" Points="{Binding Points}" />
         </DataTemplate>
     </ItemsControl.Resources>
     <ItemsControl.ItemsPanel>
         <ItemsPanelTemplate>
             <Canvas Background="Red" />
         </ItemsPanelTemplate>
     </ItemsControl.ItemsPanel>
     <!--<ItemsControl.ItemTemplate>
         <DataTemplate DataType="self:CalibrationRectangle">
             <Rectangle Fill="{Binding Path=Color, Converter={StaticResource ColorToBrushConverter}}" Width="{Binding Width}" Height="{Binding Height}" />
         </DataTemplate>
     </ItemsControl.ItemTemplate>-->
     <ItemsControl.ItemContainerStyle>
         <Style>
             <Setter Property="Canvas.Top" Value="{Binding Path=Y}" />
             <Setter Property="Canvas.Left" Value="{Binding Path=X}" />
         </Style>
     </ItemsControl.ItemContainerStyle>
</ItemsControl>

在此代码状态中,资源中的DataTemplates被完全忽略,而对象则表示为字符串。 相反,我使用注释掉的行并在ItemsControl.ItemsTemplate中定义DataTemplate它的工作原理。但是,由于我需要多个DataTemplates(每种类型一个),这不是解决方案。

这是什么问题?为什么资源中的DataTemplates不起作用?

赞赏任何想法:)

1 个答案:

答案 0 :(得分:6)

目前您定位XML元素名称。如果您想要定位类型,则需要使用{x:Type ...}并替换

<DataTemplate DataType="self:CalibrationRectangle">

<DataTemplate DataType="{x:Type self:CalibrationRectangle}">

来自MSDN

  

要引用类的类型名称,请使用x:Type Markup Extension。如果模板用于XML数据,则此属性包含XML元素名称。