我想在我的应用中image+text
放置comboBox
。我怎么能这样做?
答案 0 :(得分:1)
我使用适当的值使用它来做到这一点:
<ComboBox>
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" VerticalAlignment="Center">
<Image/>
<TextBlock/>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>