Ctrl_Alt_Defeat
Ctrl_Alt_Defeat

Reputation: 4009

Open up a Form from a Button click?

I have a user control form for a countdown timer. I want a start button to then launch the timer. The timer will then be labels in another form. What do I need to do to launch this new form from the click on start button?

Upvotes: 2

Views: 12936

Answers (1)

Dennis Traub
Dennis Traub

Reputation: 51624

var form = new YourForm();
form.Show();

Upvotes: 7

Related Questions