M
Mr.Tickle
Creating an MDI child window with the following code...
Form f1 = new Form();
f1.Text = "child form 1";
f1.MdiParent = this;
f1.StartPosition = FormStartPosition.CenterParent
Doesnt make the MDI child in the center of the MDI parent frame. I have to
use .CenterScreen to get it centered in the form.
This seems odd, shouldnt .CenterParent make it Center?
Form f1 = new Form();
f1.Text = "child form 1";
f1.MdiParent = this;
f1.StartPosition = FormStartPosition.CenterParent
Doesnt make the MDI child in the center of the MDI parent frame. I have to
use .CenterScreen to get it centered in the form.
This seems odd, shouldnt .CenterParent make it Center?