Creating Your First C# Application







Another example, On the File menu, point to New, and then click Project. Select the Windows Forms Application template. In the Name field, type MyFirstProject, 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 control onto the form, near the label. Double-click the new button, button1, to open the file Form1.cs. In Form1.cs, look for a method called button1_Click. Method button1_Click is run when button1 is clicked. Add the following statement as the body of button1_Click. // Insert this line as the body of method button1_Click. label1.Text = "Hello, World!"; The complete method should look like this: private void button1_Click(object sender, EventArgs e) { // Insert this line as the body of method button1_Click. label1.Text = "Hello, World!"; } Press F5 to compile and run your application. When you click button1, a text message is displayed. Congratulations! You have just written your first C# application.

Comments

Popular posts from this blog

C# - Changing controls properties in other forms in C#

Displaying Message Boxes in C#

How to set value of a field from sharepoint list