以一定的间隔将目录中的图像加载到图片框中
任何人都可以帮助我以一定的时间间隔将目录中的图像加载到图片框中。 例如:我在 \Picture 文件夹中有一些图像,例如 1.jpg、2.jpg ..等。 所以我的要求是循环遍历图片目录并将1.jpg加载到图片框中然后等待5秒,然后将2.jpg加载到图片框中。
Can anyone help me in loading images from directory into picture box at certain intervals.
For eg: i have some images in \Picture folder like 1.jpg,2.jpg..etc.
So my requirement is to loop through Picture Directory and load 1.jpg into Picture box then wait for 5 sec, and then load 2.jpg into picture box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需将此代码放入
doWork
事件的BackgroundWorker
中即可。如果你想保留幻灯片 Allays,请将其放入永远的 while 循环中
Just put this Code inside a
BackgroundWorker
atdoWork
Event.If you want to keep slideshow Allays put it in a forever while loop
终于明白了,希望对其他人有帮助:
Finally got it, hope it will be helpful for others:
将其加载到图片框中,
在数据库中插入该路径,
使用 image.location 再次从数据库中显示在图片框中
Load it in picture box
insert that path in db
use image.location to show in picture box again from db