AType
タイプ以外のすべてのアイテムが同じビューを持つ必要がある ItemsControl があります。どうすればそれができますか?
私は試してみobject
ましDataType
たが、禁止されています(以下に簡単な例があります):
<ItemsControl>
<ItemsControl.Resources>
<DataTemplate DataType="AType">
<TextBox />
</DataTemplate>
<DataTemplate DataType="System:Object">
<Border>
<TextBlock Text="{Binding}" />
</Border>
</DataTemplate>
</ItemsControl.Resources>
</ItemsControl>