我在 WPF 表单上有一个 ListBox,外观如下:
<ListBox x:Name="myListBox" Width="200" Height="200" Background="White">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Path=Name}" FontSize="16" FontStyle="Italic"/>
<Image Source="Images/myImage.png"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
我将如何将其添加到模板/样式中,以便所有列表框都可以引用一个模板并且都具有相同的外观?
我对如何创建模板感到困惑,
谢谢