摘要: static class Program { private static Boolean lockState = false; //保存当前的锁定状态 private static System.Windows.Forms.Timer appTimer = new Timer(); //计时器 p 阅读全文
posted @ 2020-01-07 15:17 ₯㎕~ 阅读(690) 评论(0) 推荐(0) 编辑
摘要: private void ThreadLockApp() { Thread th = new Thread(new ThreadStart(ThreadLockAppEx)); th.IsBackground = true; th.Start(); } public delegate void de 阅读全文
posted @ 2020-01-07 13:25 ₯㎕~ 阅读(670) 评论(0) 推荐(0) 编辑