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
710
Tabbed MDI do not show Ribbon Control
posted

Hi i have a main form with a WinexplorerBar for mi menu options, sales, clients etc.

IN this form i have an ultraTabbedMdiManager control too. In this form i change the IsMdiContainer property to True.

When i click in any item of the winexplorer bar i show the other forms with this code

private void MenuBar_ItemClick(object sender, Infragistics.Win.UltraWinExplorerBar.ItemEventArgs e)
{
  switch (e.Item.Tag.ToString())
  {
    case "Items":
                ItemsForm fi = new ItemsForm();
                fi.MdiParent = this;
                fi.Show();
                break;
    case "Client":
               ClientForm fcn = new ClientForm();
               fcn.MdiParent = this;
               fcn.Show();
               break;
  }
}

This work, but i have a problem, in my itemForm, i have a ultratoolbar with a ribbon. But this control do not show. I can view  The other controls but the ribbon no.

What is the problem??

Parents
  • 18495
    Suggested Answer
    posted

    Hello,

    Thank you for contacting Infragistics.

    Since you have set your parent form to be an MDI parent, the UltraToolbarsManager on the child form is trying to merge its tools with the parent form's UltraToolbarsManager.  Since there is no UltraToolbarsManager on the parent form, no tools are displayed.  You should set UltraToolbarsManager.MdiMergeable to false on the child form's UltraToolbarsManager.

    Please let me know if you have any other questions about this.

Reply Children