Articles in this section
Category / Section

How to merge the RibbonPanel of the ChildForm with the WinForms RibbonControlAdv in parent form?

1 min read

Ribbon merge support

After adding a RibbonControlAdv, ToolStripTabItems and ToolStripEx in the parent ribbonform, add a RibbonPanelMergeContainer to the ChildForm. ToolStripEx can be added into this by right Clicking on it. Now add this ChildForm to the RibbonForm that is the MDIParent of the childForm.

C#

ChildForm frm = new ChildForm();
frm.MdiParent = this;
frm.Show();

VB

Dim frm As ChildForm = New ChildForm()
frm.MdiParent = Me
frm.Show()

 

Note:

The MDIParent Ribbonform should host a RibbonControlAdv to get the ChildForm's panels to be merged. Run the sample to view the ChildForm and the RibbonPanel merged with the RibboncontrolAdv in the ParentForm. Without a single line of coding, the RibbonPanel in the ChildForm will get merged with its ParentForm.

Reference link: https://help.syncfusion.com/windowsforms/ribbon/ribbon-merge-support

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied