Hi
I've used the UltraComboEditor control with an ImageList to get a list of items with icons next to them. This all works fine except the images I have are 48x48 pixels. What I want the control to do is make each item in the list 48 pixels high (or thereabouts) and to display the images at native resolution. What's actually happening is that the image is getting scaled to whatever the height of the text is. If I make the text large, the images are scaled up, but I don't want large text, i just want large images.
Is this possible?
Chris
Hi Chris,
Try this:
this.ultraComboEditor1.Items.ValueList.ItemHeight = 48;
i want to do the same thing, displaying a smaller image but instead of on the list view which i get a perfect item size on the combo itself where for some reason it streatches to the combo borders...
is there a way to set the size for the selected image on the combo?
That worked perfectly, thanks.