private void Button_Click(object sender, EventArgs e)
        {
            if (((Button)sender).Name == "button2")
            {
                label1.Text = "Button Two Clicked!";
            }
            else if (((Button)sender).Name == "button3")
            {
                Close();
            }
        }