Is it possible to change the button name? Like I have:
private void Button1_Click(object sender, EventArgs e)
{
this.Button1.Name = "Button2"
}
private void Button2_Click(object sender, EventArgs e)
{
this.Button2.Text = "Button2"
}
But when I do that and click the button again it doesn't do anything, am I doing something wrong?