79384268

Date: 2025-01-24 12:04:14
Score: 0.5
Natty:
Report link

for all of you who, like me, just wanted to have a few simple pictures and some text in the combo box, I found something

<ComboBox x:Name="cmbStuff">
    <ComboBox.Items>
            <sys:String xmlns:sys="clr-namespace:System;assembly=mscorlib">UrText</sys:String>
            <sys:String xmlns:sys="clr-namespace:System;assembly=mscorlib">UrText</sys:String>
    </ComboBox.Items>

    <ComboBox.ItemTemplate>
            <DataTemplate>
                    <StackPanel Orientation="Horizontal">
                            <Image Source="../Images/UrImage.png"/>
                            <TextBlock Text="{Binding}"/>
                    </StackPanel>
            </DataTemplate>
    </ComboBox.ItemTemplate>
    
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Fabian