问题描述
- C# 窗体关闭后 进程也关闭了 但是线程还在运行 怎么办
-
Thread TheOpenPrint;
TheOpenPrint = new Thread(new ThreadStart(OpenPrin));
TheOpenPrint.IsBackground = true; //申明的地方private void CloseThread() { System.Environment.Exit(0);//退出全部线程 System.Diagnostics.Process.GetCurrentProcess().Kill(); } 进程关闭了 窗体也关了 但是线程还在跑 怎么办
解决方案
http://blog.163.com/china__xuhua/blog/static/1997231692011111494816398/
解决方案二:
C# 窗体退出后关闭线程的代码
时间: 2025-01-25 11:10:26