首页 > 其他分享 >界面假死

界面假死

时间:2023-01-14 14:44:47浏览次数:48  
标签:界面 假死 System BeginInvoke Action new null

 

 

 

 

private void loadInfo()
{
bool ret = false;
Action action = new Action(() => {
System.Threading.Thread.Sleep(10);
this.Dispatcher.BeginInvoke(new Action(() =>
{
//

}), System.Windows.Threading.DispatcherPriority.SystemIdle, null);
});
action.BeginInvoke(null, null);
}

标签:界面,假死,System,BeginInvoke,Action,new,null
From: https://www.cnblogs.com/sanzhu/p/14875735.html

相关文章