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/