2013-01-02 212 views
1

我有一個帶線程的WPF應用程序。關閉應用程序時如何中止所有線程?如何在應用程序窗口關閉時中止線程

+0

只要線程是後臺線程,您不必做任何特殊的事情。 –

+0

如果它們是後臺線程,那麼我認爲它們將在應用程序退出時關閉。他們是什麼? –

+0

'Thread th = new Thread(new ThreadStart(Start));'This is ma Thread inicjalization。當我關閉應用程序時,Visual Studio仍在運行。 – user1031034

回答

4

創建線程後,將IsBackground屬性設置爲true

Thread th = new Thread(new ThreadStart(Start)); 
th.IsBackground = true; 
th.Start(); 
相關問題