tags:

views:

125

answers:

2

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?

+11  A: 

With a TabControl, of course. It should be in your toolbox.

Joel Coehoorn
A: 

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.

Scott M.