Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想image+text放在我comboBox的应用程序中。我怎样才能做到这一点?
image+text
comboBox
我使用适当的值使用它来做到这一点:
<ComboBox> <ComboBox.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal" VerticalAlignment="Center"> <Image/> <TextBlock/> </StackPanel> </DataTemplate> </ComboBox.ItemTemplate> </ComboBox>