从另一个线程更新进度条的值?
我的表单创建了一个后台工作者,每 6 秒检查一次。结果是 1-100,我想显示这个。
但如果我直接这样做,我会得到一些跨线程错误,所以我在一些研究代表之后就是这样做的方法。
我在 Form1 类中创建了:
public delegate void SetProgressbarValueDelegate(int val);
但是我如何“连接它”以实际更新进度条?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用的是 WinForms,
BackgroundWorker
类会引发一个 ProgressChanged 事件将自动编组回您的 UI 线程。您应该在该事件的处理程序中更新用户界面。有一些简单的示例说明如何在 BackgroundWorker rel="nofollow">MSDN 文档。
Assuming your are using WinForms, The
BackgroundWorker
class raises a ProgressChanged event which will automatically be marshalled back onto your UI thread. You should make updates to your User Interface within your handler for this event.There are some simple examples of how to use
BackgroundWorker
within the MSDN documentation.