在后台执行 UI 工作
使用 UI 进行后台工作并知道它何时结束的最简单方法是什么?
What's the simplest way to do background work with the UI and also know when it has ended?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
使用 UI 进行后台工作并知道它何时结束的最简单方法是什么?
What's the simplest way to do background work with the UI and also know when it has ended?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
尝试使用后台工作程序
http://msdn.microsoft.com/en-我们/library/system.componentmodel.backgroundworker.aspx
Try a backgroundworker
http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx
我想您会受益于 Joseph Albahari 的 C# 中的线程,第 3 部分。特别是“子类化BackgroundWorker”部分应该很有用。
I guess that you would benefit from Threading in C#, part 3 by Joseph Albahari. Especially the section "Subclassing BackgroundWorker" should be useful.