I want to make a WindowsFormApplication that has multiple tabs.
Like
For different options, like a "Settings" tab maybe an "About tab" etc. How would I go about this?
I want to make a WindowsFormApplication that has multiple tabs.
Like
For different options, like a "Settings" tab maybe an "About tab" etc. How would I go about this?
With a TabControl, of course. It should be in your toolbox.
there are several ways, but the one that first comes to mind would be to make your tabs manually, and switch out different panels. A panel can hold objects inside it, and when you hide it, everything inside it is hidden as well. You can stack panels and switch them out.