How to create tabs inside a window?

0

I need to create a program that displays the forms I'm calling from the MenuStrip, inside the main form, as if they were part of it, and you can leave more than one open. I believe that because of the image I made, it is easier to understand what I want.

So what components do I have to use and how do I do this?

Thanks for your attention.

    
asked by anonymous 30.11.2016 / 19:46

1 answer

2

You need to use the TabControl component. It is the "controller" of the tabs, the container of them.

The tabs themselves are the control TabPage .

    
30.11.2016 / 19:52