vb.net编写一个照片浏览器程序,程序执行时单击下一张,将会显示下一张照片
vb.net编写一个照片浏览器程序,程序执行时单击下一张,将会显示下一张照片,当所有的照片显示完后将从头开始循环显示。...
vb.net编写一个照片浏览器程序,程序执行时单击下一张,将会显示下一张照片,当所有的照片显示完后将从头开始循环显示。
展开
2个回答
展开全部
我说选把打开多个图片路径加载到一个listbox里,利用listbox写代码
Private Sub picbox_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
If ListBox1.SelectedIndex <= count Then
Try
ListBox1.SelectedIndex = ListBox1.SelectedIndex + 1
Catch
ListBox1.SelectedIndex = 0
End Try
End If
picbox.Image = ListBox1.SelectedItem.ToString
End Sub
Private Sub picbox_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
If ListBox1.SelectedIndex <= count Then
Try
ListBox1.SelectedIndex = ListBox1.SelectedIndex + 1
Catch
ListBox1.SelectedIndex = 0
End Try
End If
picbox.Image = ListBox1.SelectedItem.ToString
End Sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询