Visual C# Programming: Multiple Forms
Visual C# Programming: Multiple Forms
PROGRAMMING
Multiple Forms
Often, when creating a C#
application, you will want or need
multiple pages or forms for your
application. This is an easy task to
accomplish in C# and allows you to
design a program that looks better,
is easier to use and is better
organized.
Step One
• Your first step is to create the initial form of
the application
• It is best to make this the control page
• Create buttons that will cause the other pages to open up
Main Page
Step 2 – Create new forms
• The next step is to add the window forms you
will need for the project
• This is found under project – add windows form
Directory
Content
Step 3
• Each button on the main form requires code
• Part of the code shows the new form
• Part of the code hides the main form