Hello,
Is there a way to change the layout of items in an UltraComboEditor? What I want to achieve is something like this:
(this is taken from Windows 7 task scheduler).
Regards,
Damien
Hi Damien,
No, there's no way to do this with UltraComboEditor. At least not with the default dropdown built-in to the control.
You could, however, hide the built-in dropdown button and use the ButtonRight collection to add a DropDownEditorButton to the control and then place your own custom control on the dropdown. You could write your own UserControl to do this, or maybe you could use UltraListView to achieve something like this.
Here's a post with some more details about this technique.
UltraComboEditor - Can I Use a Custom Control for the DropDown? - Infragistics Community
Hi Mike,
I followed what brian wrote in his post and it worked out pretty well, thank you.
Maybe it is worth mentioning that sender is not the UltraTextEditor in OnDropDownEditorButtonAfterCloseUp and I used e.Context instead.
Anyway, thanks for the link to the post, it really helped find the solution faster.