实现行业软件系统注销功能

Posted on 2019-01-26 20:47  努力成长静待花开  阅读(253)  评论(0编辑  收藏  举报

实现效果:

  

知识运用:

  Application类的Restart方法

  public static void Restart ()    //关闭应用程序并立即启动新的实例

实现代码:

        private void button1_Click(object sender, EventArgs e)
        {
            Application.Restart();
        }
        private void button2_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }