解决异步回调方法中,初始化Cef时WPF界面卡死的问题
时间:2017-08-07 16:14:47
收藏:0
阅读:522
Application.Current.Dispatcher.BeginInvoke(new Action(() =>
{
}));
注意用Invoke同样会卡死,只能用BeginInvoke
原文:http://www.cnblogs.com/m7777/p/7299651.html
评论(0)