C# 如何在点击屏幕时在屏幕上显示等待 gif 5 秒

发布于 2024-10-08 11:25:40 字数 180 浏览 0 评论 0原文

你好 如何在屏幕上显示等待 gif 5 秒 我想在图片框上显示加载图像(Gif)。例如,当我单击图片框时,在将另一个图像加载到此图片框之前,我的加载图像(动画图像(gif))在屏幕上显示 3 秒,并且此 gif 图像不可见,然后将另一个图像加载到图片框。 另一方面,如何在 c#.net 3.5 中显示等待 gif 直到图像完全加载 请帮我 谢谢

hi
How to display a wait gif over the screen for 5 second
i want to show a loading image(Gif) over a picturebox. eg when i click on the picturebox , before load another image into this picturebox my loading image(animation image(gif)) showing on the screen for 3 second and this gif image unvisible then another image load into picturebox.
on the other hand How to display a wait gif until image is fully loaded in c#.net 3.5
please help me
thanks

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

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

发布评论

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

评论(1

风透绣罗衣 2024-10-15 11:25:40

您可以使用PictureBox.LoadAsync(string url)。然后,PictureBox 将引发

LoadProgressChanged(object sender, System.ComponentModel.ProgressChangedEventArgs e)

LoadCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)

事件。

You could use the PictureBox.LoadAsync(string url). The PictureBox will then raise

LoadProgressChanged(object sender, System.ComponentModel.ProgressChangedEventArgs e)

and

LoadCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)

events.

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