Combobox without label

is there a way to display a combobox without a label? I’m trying to do a custom combobox that shows an image, depending on the selected item. However, the selected item’s label gets displayed.
I’m not sure if I want to change the lookandfeel of combobox, since it only applies to a couple custom comboboxes.

No, it’s designed for text - you’d need to create a lookandfeel, probably replacing the textbox’s label component with your own component to show the image.

Ugh. I might just create a custom control derived from Component, that opens up a popup menu when being clicked.

That’d probably be easier