Windows Forms: Form Load and Button click Event in C#

How to use form load and button click event in C#.

Step 1Click New Project, then select Visual C# on the left, then Windows and then select Windows Forms Application. Name your project "FormLoadAndButtonClick" and then click OK

form load button click c#Step 2: Design your form as below

button click c#

Step 3: Add code to handle your form as below

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace FormLoadAndButtonClick
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            //Set text to lblFormLoad label on Form_Load event
            lblFormLoad.Text = "This text is set on startup !";
        }

        private void btnClickMe_Click(object sender, EventArgs e)
        {
            //Set text to lblButtonClick on button click event
            lblButtonCLick.Text = "This text is set on button click !";
        }

        private void btnClear_Click(object sender, EventArgs e)
        {
            lblButtonCLick.Text = string.Empty;
        }

        private void btnExit_Click(object sender, EventArgs e)
        {
            //Exit your application
            Application.Exit();
        }
    }
}

VIDEO TUTORIALS