我在一个面板中有一个picturebox和textarea我需要在按键向下箭头上滚动图片框图像> ..
答案 0 :(得分:0)
Private Sub PictureBox1_PreviewKeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles PictureBox1.PreviewKeyDown
If e.KeyCode = Keys.Down Then
' Scrolling Code
End If
End Sub
你可以处理像这样的图片框keydown。