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
110
status bar when ribbon used
posted

Does anybody know how to get the status bar that is docked bottom to properly appear within the Main UI border when the toolbarsmanager control is set to display the ribbon? If I:

1. add a toolbars manager control to the form and set the ribbon to show.

2. add a status bar to the form and dock bottom.

 . . . then the status bar properly appears within the main UI with a border around the entire application.

But when I set the IsGlassSupport to False so that the UI properly styles the entire application, then the status bar "hangs" outside of the main application border and looks really ugly depending on which appstyle is loaded. The status bar should remain connected to and embedded within the main form rather than appearing as a stand alone control that is taped together at the bottom of the form.

Parents
  • 23930
    Offline posted

    Hello,

     

    What you could do in your case is to set FormDisplayStyle property of UltraToolbasManager to StandardWithRibbon, then form will displays normally based on its FormBorderStyle property settings and it also includes some Ribbon elements in the caption area, such as the QAT and Contextual Tab Group labels. You can do that with the help of the designer (by changing the corresponding property) or by adding the following line of code:

     

    ultraToolbarsManager1.FormDisplayStyle = Infragistics.Win.UltraWinToolbars.FormDisplayStyle.StandardWithRibbon;

     

    Please try this suggestion and let me know if this is the result which you are looking for.

     

    If you have any other questions feel free to ask them.

Reply Children