I have already found many tips on how to resize a Form without borders, all functional and good, but they do not work when it comes to an MDI Form.
Does anyone have a functional hint on how to resize an MDI Form?
Thank you in advance.
I have already found many tips on how to resize a Form without borders, all functional and good, but they do not work when it comes to an MDI Form.
Does anyone have a functional hint on how to resize an MDI Form?
Thank you in advance.
I do not know if I solved your problem because it is very confusing your question ...
In the child form constructor, add these lines of code:
this.Dock = DockStyle.Fill;
In the Form_Load event, you must add this line of code:
this.WindowState = FormWindowState.Maximized;