Forum
Please
Log In
to post a new message or reply to an existing one. If you are not registered, please
register.
NOTE: Some forums may be read-only if you are not currently subscribed to
our technical support services.
Subject |
Author |
Date |
|
koikoi sige
|
Dec 18, 2009 - 12:00 AM
|
Hi.
I maximize and close MDI ChildForm2,and restore MDI ChildForm1,remain RibbonMdiButtonStrip.
Visual Studio 2005,C#
Elegant Ribbon v3.3.0.0
Add Form1(Rename ParentForm) and Form2(Rename ChildForm).
Add ribbon1 on the ParentForm.
a part of source code of ParentForm
public partial class ParentForm : Form
{
ChildForm childForm1 = new ChildForm();
ChildForm childForm2 = new ChildForm(); public ParentForm()
{
InitializeComponent();
this.IsMdiContainer = true;
childForm1.MdiParent = this;
childForm2.MdiParent = this;
childForm1.Text = "ChildForm1";
childForm2.Text = "ChildForm2;
childForm1.Show();
childForm2.Show();
}
}
Run and maximize ChildForm2 and close ChildForm2 and
restore ChildForm1.
Result:
Remain RibbonMdiButtonStrip of not maximized ChildForm1.

Thanks.
|
|
Technical Support
|
Dec 18, 2009 - 11:21 AM
|
This is already fixed. Thank you. The fix will be available in v.3.4, which will be released very soon.
|
|