当 c# (windows) 应用程序中不存在控件时显示 .gif 动画

发布于 2024-11-17 17:00:32 字数 153 浏览 3 评论 0原文

我有一个应用程序,我正在使用服务器上的 webClient 调用 .php 文件。要完成该过程需要几分钟(基于客户端数据库)。我试图显示进度条,但由于控制不在这里,所以没有处理。当它完成下载过程时它会更新。所以现在我试图显示 .gif 图像,但图像也发生同样的情况。还有其他解决办法吗????

I have one application in that i am calling a .php file using webClient from the server. To complete the process it takes few minutes(based on the client db). I tried to show progress bar but because of control is not here it's not processing . It updating when it completes the download process. So now i am trying to show .gif image but same thing happening with the image also. Any other solutions are there??????

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

‘画卷フ 2024-11-24 17:00:32

当然。您希望在单独的(非 UI)线程中执行耗时的任务,并让 UI 线程执行消息处理,从而重新绘制进度条并制作 GIF 动画。

Sure. You'd want to do your time-consuming tasks in a separate (non-UI) thread, and let the UI thread do the message processing, which in turn redraws your progress bar and animates GIFs.

风渺 2024-11-24 17:00:32

您可以使用线程来完成此操作。您可以在新线程中调用 .php 文件,并在 UI 线程中显示 gif 图像以向用户显示该进程正在继续,并且在线程完成工作后您可以隐藏 gif 图像。

You can do it using Threading. You can do your work of calling a .php file in a new thread and in the UI thread you can show a gif image to show to the user that the process is continuing and after thread completes the work you can hide the gif image.

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