public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("Welcome to windows applications");
}
private void Form1_Click(object sender, EventArgs e)
{
MessageBox.Show("You have clicked on the form");
}