标签: wpf multithreading abort
我有一个带线程的WPF应用程序。关闭应用程序时如何中止所有线程?
答案 0 :(得分:4)
创建线程后,将IsBackground属性设置为true。
IsBackground
true
Thread th = new Thread(new ThreadStart(Start)); th.IsBackground = true; th.Start();