关闭程序后重新启动应用程序
我用 C# 开发了一个程序。 在我的程序中,当用户保存个人设置时,程序可以遵循规则。 1-保存设置。 2-保存后关闭所有表格和程序。 3-并重新启动程序。
我已完成第 1 步和第 2 步
我该如何完成第 3 步? 感谢您的耐心。
I'm developed a program on C#.
in my program, when user save personal setting the program can be following rules.
1- save settings.
2- after saving close all form and program.
3- and restart program.
I'm done 1. and 2. steps
How can i done 3. steps?
thanks for patience.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Application.Restart() 方法来重新启动您的应用程序,如果您不喜欢使用该方法,这里是我用于重新启动的自定义方法。
You can use Application.Restart() method to restart your application, if you don't like to use that method, here is a custom method that I used for restarting.