5
有沒有辦法乾淨地終止從另一個線程調用System.Windows.Forms.Application.Run()
發出的消息循環?C# - 終止Application.Run()
Thread messageLoop = new Thread(() => Application.Run());
messageLoop.SetApartmentState(ApartmentState.STA);
messageLoop.Start();
//How to terminate thread like on Application.ExitThread() without calling Thread.Abort()?
在此先感謝!
擊敗亞1秒! ;-) –
呵呵,測試示例代碼耗時超過一秒鐘。 –
哼,測試schmesting! –