ar0j
ar0j

Reputation:

C# GUI with tabs

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?

Upvotes: 0

Views: 2750

Answers (2)

Scott M.
Scott M.

Reputation: 7347

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.

Upvotes: 0

Joel Coehoorn
Joel Coehoorn

Reputation: 415735

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

Upvotes: 11

Related Questions