其他分享
首页 > 其他分享> > 在异步或子线程中show窗体的时候要用MethodInvoker委托,要不然show不出来

在异步或子线程中show窗体的时候要用MethodInvoker委托,要不然show不出来

作者:互联网

this.Invoke((MethodInvoker)delegate ()
{
Thread.Sleep(500);
this.Hide();
FloatWnd floatWnd = new FloatWnd();
floatWnd.Show();
floatWnd.logout_even += FloatWnd_logout_even;//注册退出登录事件
});

标签:even,FloatWnd,floatWnd,或子,线程,MethodInvoker,show,logout
来源: https://www.cnblogs.com/qingfenglin/p/12793638.html