首页 > 学院 > 开发设计 > 正文

C#懒人常用异步方法

2019-11-14 13:47:13
字体:
来源:转载
供稿:网友

Winform

this.Invoke(new Action(() =>

                        {

 

                        }));

 

Wpf

            this.Dispatcher.Invoke(DispatcherPRiority.Normal,

                new Action(() =>

                {

                    //调用主线程

                    ButtonOkClick(this.msg);

                }));


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表