it looks like that you can only attach one control to PopupControlContainer. If I want to populate multiple buttons in UltraDropDownButton by using PopupControlContainer, how should I do it?
Oh, I see. Well, you could create a usercontrol with multiple buttons on it and use that as the control you drop down. Or, you could put a panel on the form with the buttons you want and drop that down.
But if you want a menu, why not use a menu? You could create menus with UltraToolbarsManager. I beleive that the UltraDropDownButton takes an IPopupItem. This can either be a ControlContainer or an UltraToolbars Menu.
Just want to make sure we have complete understanding.
I am designing a GUI for touch screen and there's space limit, so I want to set the style of UltraDropDownButton to 'DropDownButtonOnly', so when use click that button, serveral more buttons pop up (similar to clicking a menu).
1. Is UltraDropDownButton good for this?If not which control I can use?
UltraDropDownButton only has one button and can only hold one control. There's no way to have multiple buttons.
If you want multiple buttons, why not use multiple controls and just line them up next to each other?