在使控件可见之前在 PictureBox 中加载图像
我有一个黑色背景的表格,有 9 个图片框。 当程序启动时,我想使用这些图片框显示 9 个图像。
然而,图片框需要时间来加载图片。等待时图片框先出现是相当难看的。
有没有办法可以从空白黑屏移动到直接显示 9 个图像,而中间没有可见的加载?
谢谢。
I have a form with black background, with 9 picture boxes.
When the program starts, I want to show 9 images using these picture boxes.
However, the picture boxes take time to load the picture. It is quite ugly that the picture boxes show up first while waiting.
Is there a way I can move from blank black screen to straightaway 9 images, without the visible loading in between?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你是如何加载你的表单的(我猜你在这里谈论的是Windows.Forms)?
您只需创建一个新的 Window 类并加载图片,然后在完成所有操作后调用
Show
方法。或者您可以将 PictureBox 的
WaitOnLoad
属性设置为true
。How are you loading your Form (I guess you are talking about Windows.Forms here)?
You can just create a new Window class and load your pictures and then after all is done call the
Show
method.Or you can just set the
WaitOnLoad
property of the PictureBox totrue
.由 MSDN 提供: http://msdn.microsoft.com/en-us/library/system.windows.forms.picturebox.waitonload(v=VS.100).aspx1
Courtesy of MSDN: http://msdn.microsoft.com/en-us/library/system.windows.forms.picturebox.waitonload(v=VS.100).aspx1