执行方法时显示消息
在我的应用程序中,我读取/解析数据需要一些时间。当该过程正在进行时,我想在屏幕上显示一条消息,指示该过程正在进行。我相信我必须使用 Thread 来实现它,但不知道如何使用和实现它。调用方法可能会抛出异常等。
关于如何完成任务的任何想法/提示。非常感谢任何帮助。
谢谢
In my app, I read/parse data that takes some time. While that process is going on I want to display a message on screen indicating the process going on. I beileve I got to use Thread for it, but don't get an idea how to use and implement it.The calling method may throw exception or so.
Any idea/tip on how to achieve the task. Any help is highly appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您使用的是.Net。
您应该使用BackgroundWorker 组件。
在其
DoWork
事件(在后台线程上运行)中执行操作,调用ReportProgress
向 UI 发布消息,并处理ProgressChanged
和RunWorkerCompleted
更新 UI。I'll assume that you're using .Net.
You should use the BackgroundWorker component.
Perform your operation in its
DoWork
event (which runs on a background thread), callReportProgress
to post messages for the UI, and handleProgressChanged
andRunWorkerCompleted
to update the UI.