Navigation with Toolbars

  • Thread starter Thread starter Roger R. Smith
  • Start date Start date
R

Roger R. Smith

Hello I am fairly new to C# and I wanted to create an application with a
toolbar down the side and each button would navigate a user to a new page.
So the toolbar would remain in place and to the right of the toolbar would
be a new page with new data and new options for the user.

How does one go about doing this in C# and where do I start?

Thanks
Rog
 
Roger R. Smith said:
to create an application with a
toolbar down the side and each button would navigate a user to a new page.

Have a look at the System.Windows.Forms.TabControl control. This control
allows you to add multiple pages like a card index. The control can be
configured to have the tabs run across the top, down the left or right, or
at the bottom. The tabs can also be changed to look like buttons. When the
user clicks one of the tabs, the appropriate page is displayed.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top