Walkthrough: Creating a Simple Windows Form

In this walkthrough you will build and run a simple Windows Form.

Note

The dialog boxes and menu commands you see might differ from those described in Help depending on your active settings or edition. To change your settings, choose Import and Export Settings on the Tools menu. For more information, see Working with Settings.

To create a Windows Form

  1. Start Visual Studio.

  2. Create a Windows Application called HelloWorld. For details, see How to: Create a New Windows Forms Application Project.

  3. From the Toolbox, drag a Button control onto the form.

  4. Click the button to select it. In the Properties window, set the Text property to Say Hello.

To write the code for your application

  1. Double-click the button to add an event handler for the Click event. The Code Editor will open with the insertion point placed within the event handler.

  2. Insert the following code:

    MessageBox.Show ("Hello, World!")
    
    MessageBox.Show("Hello, World!");
    
    MessageBox.Show("Hello, World!");
    
    MessageBox::Show("Hello, World!");
    

To test your application

  1. Press F5 to run the application.

  2. When your application is running, click the button and verify that "Hello, World!" is shown.

  3. Close the Windows Form to return to Visual Studio.

See Also

Other Resources

Creating Event Handlers in Windows Forms