我如何向下箭头发送密码?

时间:2009-08-30 20:33:16

标签: vb.net winforms

在vb.net中我想为向下箭头做一个sendkeys。什么是代码?

2 个答案:

答案 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)

虽然我不会质疑为什么,但您可以看到this article on MSDN说您发送了“{DOWN}”

具体做法是:

SendKeys.Send("{DOWN}")