为什么我的 Winforms 应用程序中的 SynchronizationContext.Current 为 null?
我刚刚写了这段代码:
System.Threading.SynchronizationContext.Current.Post(
state => DoUpdateInUIThread((Abc)state),
abc);
但 System.Threading.SynchronizationContext.Current 为 null
I just wrote this code:
System.Threading.SynchronizationContext.Current.Post(
state => DoUpdateInUIThread((Abc)state),
abc);
but System.Threading.SynchronizationContext.Current is null
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了让它发挥作用。
在你的类中
在UI线程(主线程)中
在工作线程中
To get it to work.
In your class
In the UI thread (main thread)
In the worker thread
请参阅此说明。
该博客文章提出了一种解决方法。
See this explanation.
The blog post proposes a workaround.