使用单线程运行 WPF
Run WPF with Single Thread
WPF 应用必须在单线程(STA)模式下运行。本文介绍两种在单线程中运行 WPF 应用的方式:使用 Thread 创建 STA 线程和使用 [STAThread] 特性标记主方法。
一、实现方式
1.1 示例代码
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(); }
|