This example demonstrates automatic menu merging for MDI applications. The main and child MDI forms contain a Ribbon UI. The child form's RibbonControl
is merged into the main form's RibbonControl when the child form is maximized.
private void Form1_Load(object sender, EventArgs e) {
ribbonControl1.MdiMergeStyle = RibbonMdiMergeStyle.OnlyWhenMaximized;
CreateChildForm();
}
- Form1.cs (VB: Form1.vb)
- ReportForm.cs (VB: ReportForm.vb)
(you will be redirected to DevExpress.com to submit your response)