Application.Current.Dispatcher.BeginInvoke(new Action(() =>
{
}));
注意用Invoke同样会卡死,只能用BeginInvoke
Application.Current.Dispatcher.BeginInvoke(new Action(() =>
{
}));
注意用Invoke同样会卡死,只能用BeginInvoke