3
Answers

Highlight button after transferring to another form

Samuel Toh

Samuel Toh

3y
450
1

private void btnUserUpdate_Click(object sender, EventArgs e)
        {
            User_Update x = new User_Update();
            x.Show();
            this.Hide();
        }

 

Above I have a code for a button. After I clicked the above button, it will bring me to a new form. What I want is after it brings me to the new form, I want the button to be highlighted so that the user will know which form they are in. How do I do that?

Answers (3)