MDI Child Window Menu Issue
I am having a menu issue when I open my child form. I have set the following properties on my child form: WindowState = Maximized, FormBorderStyle = FixedDialog, ContolBox = false, MaximizeBox = false and MinimizeBox = false.
I create the form with the following code
Form1 Frm = new Form1();
Frm.MdiParent = this;
Frm.SHow();
When the child form opens an icon is placed to the left of the first item in the menu. When clicked on it gives you the restore options. Is there any way to stop the this from happening?