What's the recommended way to open a new form and close the current/first form?

后端 未结 3 1870
不思量自难忘°
不思量自难忘° 2021-01-29 11:02

I\'m building an application that have a initial form for login and if the user is authorized this form (login) should close and the application main form should open.

I

3条回答
  •  借酒劲吻你
    2021-01-29 11:25

    If you start with the login form and close it, you no longer have any thread to run on. So (one of) the solution would be to run a different initial form and make that form launch the login form. Once the login form is no longer useful, you can close that and return control to the initial form. You can then spawn any kind of form as needed from the initial form.

提交回复
热议问题