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
60
WinForms, UltraToolbarsManager, FileMenu
posted

Hello,

we use NetAdvantage 13.1 Win CLR4x. we build our menu with the UltraTollbarManager and the Menu2010-style. After program start always the first "normal" tab is active. Sometimes the file menu tab should be active. Is it possible to activate the file menu tab by code?

Parents
  • 715
    posted

    Hello Frank Grossmann,

    You could use the following code:

        1 private void Form1_Shown(object sender, EventArgs e)

        2         {

        3             this.ultraToolbarsManager1.Ribbon.ApplicationMenu2010.DropDown();

        4         }

    Please feel free to let us know if you have any other questions with this matter.

     

Reply Children