在 Windows 窗体中调用
有人有使用 Invoke 的学习资源链接吗?
我正在努力学习,但我看到的所有示例都无法适应我的目的。
Does anyone have a link to a learning resource for using Invoke?
I'm trying to learn but all the examples I have seen I have been unable to adapt for my purposes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过 MSDN Control.Invoke
我刚刚编写了一个小 WinForm 应用程序演示 Control.Invoke。
创建表单后,在后台线程上开始一些工作。该工作完成后,更新标签中的状态。
Did you try MSDN Control.Invoke
I just wrote a little WinForm application to demonstrate Control.Invoke.
When the form is created, Start some work on background thread. After that work is done, Update the status in a label.