执行方法时显示消息

发布于 2024-10-15 11:51:07 字数 157 浏览 1 评论 0原文

在我的应用程序中,我读取/解析数据需要一些时间。当该过程正在进行时,我想在屏幕上显示一条消息,指示该过程正在进行。我相信我必须使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清醇 2024-10-22 11:51:07

我假设您使用的是.Net。

您应该使用BackgroundWorker 组件

在其 DoWork 事件(在后台线程上运行)中执行操作,调用 ReportProgress 向 UI 发布消息,并处理 ProgressChangedRunWorkerCompleted 更新 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), call ReportProgress to post messages for the UI, and handle ProgressChanged and RunWorkerCompleted to update the UI.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文