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>