Run WPF with single thread
2017-07-19 13:20:58

示例代码:

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();
}
Prev
2017-07-19 13:20:58
Next