在vb.net中我想为向下箭头做一个sendkeys。什么是代码?
答案 0 :(得分:16)
' make sure you have this at the top:
Imports System.Windows.Forms.SendKeys
' and then you can use this:
SendKeys.Send("{DOWN}")
到这里获取有关VB.Net中SendKeys的更多示例和详细信息 http://msdn.microsoft.com/en-us/library/system.windows.forms.sendkeys(VS.71).aspx
答案 1 :(得分:5)