I have array of objects with created images (Object.Image), i want to show images in combobox.
<ComboBox x:Name="typeSelection" ItemsSource="..." DisplayMemberPath="Image"></ComboBox>
Combobox shows Image.ToString(), not image itself, how to fix it.
You need to set the ItemTemplate for the combobox. something like this….
(this is for an array of paths to the images, not actual images)
here is a nice example of comboboxes in silverlight