我有一个ItemsControl,其中除了AType
类型之外的所有项都应该具有相同的视图。我怎么能这样做?
我已尝试将object
作为DataType
,但禁止使用(以下是简化示例):
<ItemsControl>
<ItemsControl.Resources>
<DataTemplate DataType="AType">
<TextBox />
</DataTemplate>
<DataTemplate DataType="System:Object">
<Border>
<TextBlock Text="{Binding}" />
</Border>
</DataTemplate>
</ItemsControl.Resources>
</ItemsControl>