Hello all,
Is it possible to include an image in a ComboBox menu?
I would like to have an image of a curve like a HighPass and have HighPass written to the right of the image. Then I would have a different curve image for each selection of my ComboBox menu.
Thank you
The ComboBox uses a PopupMenu to select. You can use a CustomComponent instead a simple text calling addCustomItem()
This allows you to override the paint() of that CustomComponent to look like whatever you want.
Thank you Daniel!