Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
45
PopupControlContainer on Ribbon - how to drop down from code
posted

Hi there,

We have a PopupControlContainer within our ribbon on the toolbar and we would like to progmatically have this dropdown. Is there any way to do this?

Thanks!

Parents
  • 44743
    Verified Answer
    posted

    Get the tool instance from the ribbon group or toolbar and call DropDown on it:

    ((PopupToolBase)this.ultraToolbarsManager1.Ribbon.Tabs[0].Groups[0].Tools[0]).DropDown();

    or

    ((PopupToolBase)this.ultraToolbarsManager1.Toolbars[0].Tools[0]).DropDown();

Reply Children
No Data