如何在应用程序窗口关闭时中止线程

时间:2013-01-02 19:07:04

标签: wpf multithreading abort

我有一个带线程的WPF应用程序。关闭应用程序时如何中止所有线程?

1 个答案:

答案 0 :(得分:4)

创建线程后,将IsBackground属性设置为true

Thread th = new Thread(new ThreadStart(Start));
th.IsBackground = true;
th.Start();