Run WPF with single thread
示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| # 方式 1 static void Main(string[] args) { var t = new Thread(() => { var main = new MainView(); main.Closed += (sender, e) => { System.Windows.Threading.Dispatcher.ExitAllFrames(); }; main.Show(); System.Windows.Threading.Dispatcher.Run(); }); t.SetApartmentState(ApartmentState.STA); t.Start(); }
# 方式2 [STAThread] static void Main(string[] args) { var main = new MainView(); main.Closed += (sender, e) => { System.Windows.Threading.Dispatcher.ExitAllFrames(); }; main.Show(); System.Windows.Threading.Dispatcher.Run(); }
|