VB.NET PictureBox 滚动浏览文件夹中的图像
我的表单上有一个图片框以及两个按钮(后退和前进),但我找不到可行的方法来执行我想要执行的操作:在文件夹中滚动图像,就像默认的 Windows 图片查看器使用箭头键所做的那样。
有没有有效的方法来做到这一点?
如果重要的话,我将 Visual Basic .NET 与 Visual Studio 2010 一起使用。
I have a pictureBox on my form along with two buttons (Back and Forward) but I can not find a viable method of doing what I wish to do: Scrolling through images in a folder like the default Windows Picture Viewer does with Arrow Keys.
Is there an efficient way to do this?
I'm using Visual Basic .NET with Visual Studio 2010, if that matters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用
DirectoryInfo
加载图片,然后使用索引浏览它们。这是一个例子:You'll need to load the pictures using
DirectoryInfo
, then browse through them with an index. Here is an example:你应该更具体。
如果它对您有帮助,您必须创建两个子程序,将下一个和上一个图像分配给图片框,并在按键事件和按钮单击时触发这些子程序。
you should be more specific.
if it will help you you have to create two subrotines that assign the next and pervious image to the picture box and triggier these subrotines on the key down events and the bottons clicks.