Creating Your First C# Application
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
It only takes a minute to create a C# application. Follow these steps to create a program that opens a window and reacts to a button press.
To create a C# application
-
On the File menu, point to New, and then click Project.
-
Ensure that the Windows Forms Application template is selected, in the Name field, type MyProject, and click OK.
You will see a Windows Form in the Windows Forms designer. This is the user interface for your application.
-
On the View menu, click Toolbox to make the list of controls visible.
-
Expand the Common Controls list, and drag the Label control to your form.
-
Also from the Toolbox Common Controls list, drag a button onto the form, near the label.
-
Double-click the new button to open the Code Editor. Visual C# has inserted a method called button1_Click that is executed when the button is clicked.
-
Change the method to look like this:
private void button1_Click(object sender, EventArgs e) { label1.Text = "Hello, World!"; } -
Press F5 to compile and run your application.
When you click the button, a text message is displayed. Congratulations! You've just written your first C# application.