Open up a Form from a Button click?

前端 未结 1 1139
庸人自扰
庸人自扰 2021-01-14 20:28

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 l

相关标签:
1条回答
  • 2021-01-14 21:12
    var form = new YourForm();
    form.Show();
    
    0 讨论(0)
提交回复
热议问题