[HowTo] C# Hide TitleBar on MDI Child windows when maximized

1) All childs WindowState must be set to Normal
2) Show() method must becalled rather than Focus() .
3) The Big One: Parent windows MainMenuStrip must be set (put something like this.MainMenuStrip = new MenuStrip(); in the mdi form_load event).

Source


Leave a Reply