So I have a Desktop application which works with a lot of different forms which an user may need. I have a main form with navigation to the different forms but now every new form is loaded in a new window. What is the best approach to implement a functionality that will show only the main form which is in fact just a toolStrip with several menus and use the other space to load the other forms?
So I have a Desktop application which works with a lot of different forms
Share
Sounds like you want an MDI implementation.
You have to set the mainform.IsMdiContainer = true
And the childForm.MdiParent = mainform