WinForms - Getting Started

A short tutorial showing how to build your first winforms project

Page content

Winforms - What is it?

Winforms projects are a simple way to get started with C# programming. They combine a simple front end (screen) with a closely linked backend (code).

Below is a very short overview of how to build a simple winforms project using C#. For guidance with a bit more clarity follow this link to my winforms resources link here

How to work with Winforms (a short guide)

You’ll need some free software, MS Visual Studio Community Edition, available here –> Download Visual Studio.

To start a winforms project simply follow these steps 1:

1. Open Visual Studio and Create an Account if asked.

2. Create a New Project

Choose Create a New Project from the menu: Create New Project

3. Select the Project Type

Type “winform” into the search bar at the top and select the C# Windows Desktop project

Project Type

4. Save Your Project

Save your project in a suitable location and give it a name. Then click Next.

Save the Project

5. Select A Framework

For this project the framework is unimportant, select whichever is on display and click Create.

Framework

6. The IDE (Integrated Development Environment)

In the centre of the screen is your “Form”, this is what your users see. On the left is your Toolbox select (View/Toolbox) if you can’t see it. On the right are the properties. If you draw any object on the form you can set its properties (colour/text/name etc…) by editing the attributes in the Properties Window.

Environment

7. Reset the Window Layout (optional)

If your window doesn’t look like that shown in step 6, simply select Window/Reset Window Layout:

Reset Layout

8. Populate your form

Add a “button” and a “textbox” onto your form by dragging and dropping them from the toolbox onto the form:

Form Design

Note: Normally you would use the “Properties Window” at this point to set the object names etc, but for speed we are going to skip this step (this is bad practice!)

9. View the C# code

Double click the button to view the code. The first time you see C# it can appear to be a bit intimidating. For now, you need to understand that the {curly brackets} signify the start and the end of a block of code. The block we are interested in starts on line 10 and finishes on line 13. This is our “Click” event, (the code which is run when our button is clicked).

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
namespace MyFirstWinformsProject
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            
        }
    }
}

10. Coding

Enter the following code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
namespace MyFirstWinformsProject
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            //Store the message from the textbox into a variable
            //called "message"
            string message = textBox1.Text;

            //If the user wrote a message (length greater than zero)
            if (message.Length > 0)
            {
                //Draw a message box with the user's message in it
                MessageBox.Show("You wrote: " + message);
            }
            else //otherwise
            {
                //Produce an elaborate error message box
                MessageBox.Show("You didn't write anything!",
                    "Error", 
                    MessageBoxButtons.OK,
                    MessageBoxIcon.Error);
            }
        }
    }
}

11. Run The Application

Press the green “play” button to test your code:

Form Design

12. Test 1

You should be able to enter a message and have it returned:

Form Design

13. Test 2

Or enter nothing and see a much more elaborate message box tell you there is an error. Note: This is elaborate because it has a title and an icon, which you specified in your code (lines 25..28)

Form Design


  1. This was a very short overview of a very simple app, the images are not totally clear and the explanations are brief. If it worked for you that is great but, please take the time to view my Word docs [link here] for properly detailed guides. ↩︎