C# 如何在点击屏幕时在屏幕上显示等待 gif 5 秒
你好 如何在屏幕上显示等待 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
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 raiseLoadProgressChanged(object sender, System.ComponentModel.ProgressChangedEventArgs e)
and
LoadCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
events.