Is it possible to use the same DataTemplate for a defined selection of types, i.e. how to change the following sample code so that the same DataTemplate is used for all listed types?
<DataTemplate DataType="{x:Type local:ClassA, ClassB, ...}">
<StackPanel Orientation="Horizontal">
<Label Content="{Binding Path=Title}"/>
...
</StackPanel>
</DataTemplate>