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()?
ありがとうございます!
ビートya 1秒! ;-) –
Hehe、サンプルコードのテストに1秒以上かかりました。 –
Humph、testing schmesting! –