摘要: private void btnRestart_Click(object sender, EventArgs e) { Application.ExitThread(); Thread tmp = new Thread(new ParameterizedThreadStart(AutoRun)); object obj = Application.ExecutablePath; Thread.Sleep(1); tmp.Start(obj); ... 阅读全文
posted @ 2012-02-15 09:38 守望幸福的猪 阅读(2394) 评论(1) 推荐(0) 编辑