tags:

views:

571

answers:

3

Is there a combobox alike component that displays list of items with icons?

+1  A: 

Check this C Sharp Help project and Code Project out, they show how to derive from the ComboBoxItem to display an image.

ThePower
I'd show the code and reference it but there's quite a bit ;-) and there's some good explanations as to what is going on etc.
ThePower
A: 

There's a cool implementation in an article here.

kek444
A: 

You could certainly host a WPF control in your WinForm app and use a WPF comboBox which can easily have images. A quick google search for "wpf combobox images" came back with a good example:

http://arcanecode.com/2007/09/18/the-wpf-combobox/

Mike Ohlsen