-1
I am creating a registration and management system that works only with CRUD. The whole functional part of the system is working perfectly, but there’s something that’s been bothering me. I’m using MDI application, in this case when I click on the top menu, it creates smaller windows within the application, making the long-term mess.
My object is simply to do the following: Click on the top menu, and windows form take up 100% of MDI space. Just like when you click on another menu, close the current windows form and create the other grabbing the entire screen size. Can anyone tell me how to do this?
But then what’s the point of using an MDI window?
– Jéf Bueno
My goal is to manage the application windows. And by the way, I figured out how to use it at 100%, in case it just goes in formBorderStyle, in the properties menu, and leave with value of "None", and also go in windowState and leave with value of "maximize". So when you click on the menu, it lets you occupy 100% of the space and no borders.
– Lucas Verissimo
But I still do not know how to remove the minizar and maximize controls that exist for these windows (in the case inside the MDI appears these options when it is in 100% screen size), and also still do not know how to close this window when opening another through the menu. Can you help me with this?
– Lucas Verissimo