I create MDI Parent ribbon toolbar.Set the ParentForm.IsMdiContainer = True.
First ChildForm1 => RibbonToolbarSecond ChildForm2 => Basic Toolbar.
First Ribbon toolbar is added ribbon tab.but second basic toolbar can't show .
I want also second toolbar looks like ribbon toolbar.
How can I do?...
I appending sample code..
Hello,
I am just checking about the progress of this issue. Let me know if you need my further assistance on this issue.
Thank you for using Infragistics Components.
Hi,
Thank you for the reply.
Yes, it is possible. You can easily implement it in your initial sample. You need to set the MdiMergable property in your Toolbar form back to True:
Me.UltraToolbarsManager1.MdiMergeable = True ‘ do this in Toolbar form
And then disable the Office2007UICompatibility for the main toolbar in the ParentForm:
Me.UltraToolbarsManager1.Office2007UICompatibility = False ‘ do this in ParentForm
Please let me know if you have any additional questions.
Thankyou..
Is it possible to place a toolbar under the ribbon?
Thank you for the screenshot.
The UltraToolbars merging feature doesn’t support such conversions (from a toolbar to a ribbon group). The only way to achieve this is to actually add a new ribbon group and populate it with the tools from the toolbar. This is fairly difficult as you will have to ensure that the tool is of the same type, it has a unique key, all the properties you are interested from the toolbar tool are set on the tools in the ribbon group and all the new tool is subscribed to all the events necessary.
I have attached a modified version of your sample in order to demonstrate this suggestion. Feel free to modify it based on your custom needs.
I hope stuck next to RibbonToolbar.