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.
 
Back
Top