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
1310
UltraWinToolbars Application Menu -visible=false exception
posted

 I am using version 8.1 with VS 2008 sp1.  I placed the UltraToolbarsManager on the form.  I changed the Ribbon.ApplicationMenu.visible property to false and got an exception.  The message says "The control Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea has thrown an unhandled exception in the designer and has been disabled."

Is this an issue with IG code?

 

Parents
No Data
Reply
  • 3166
    posted

    Replying to old post for others searching for solution... 

    It maybe the Office2007UICompatibility is by default set to true. When set to true if you set the ApplicationMenu.Visible = false it raises an exception. Try the following


    ultraToolbarsManager1.Office2007UICompatibility = false;
    ultraToolbarsManager1.Ribbon.ApplicationMenu.Visible =
    false;

     

Children
No Data