いくつかのコードがあります:
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Rectangle Fill="Blue"></Rectangle>
<TextBlock Text="test"></TextBlock>
</StackPanel>
</DataTemplate>
Rectangle の代わりに、たとえば楕円など、あらゆる種類の形状を設定できるようにしたいと考えています。
次のようなものが欲しい:
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Shape Fill="Blue" ShapeType={Binding DefaultShapeType}></Shape>
<TextBlock Text="test"></TextBlock>
</StackPanel>
</DataTemplate>