如何使用SendKeys发送NumPad密钥?

时间:2017-07-06 15:06:59

标签: c# winforms sendkeys keystroke numpad

我想发送NumPad键的按键(1-9)。

我试图使用:

SendKeys.SendWait("{NUMPAD1}");

但它说

  

System.ArgumentException:关键字NUMPAD1无效(已翻译)

所以我不知道NumPad的正确密钥代码。

2 个答案:

答案 0 :(得分:1)

出于好奇,我查看了source code的SendKeys。没有解释为什么小键盘代码被排除在外。我不建议将此作为首选方案,但可以使用反射将缺失的代码添加到课程中:

FieldInfo info = typeof(SendKeys).GetField("keywords",
    BindingFlags.Static | BindingFlags.NonPublic);
Array oldKeys = (Array)info.GetValue(null);
Type elementType = oldKeys.GetType().GetElementType();
Array newKeys = Array.CreateInstance(elementType, oldKeys.Length + 10);
Array.Copy(oldKeys, newKeys, oldKeys.Length);
for (int i = 0; i < 10; i++) {
    var newItem = Activator.CreateInstance(elementType, "NUM" + i, (int)Keys.NumPad0 + i);
    newKeys.SetValue(newItem, oldKeys.Length + i);
}
info.SetValue(null, newKeys);

现在我可以使用eg。 SendKeys.Send("{NUM3}")。然而,它似乎不适用于发送替代码,所以也许这就是为什么他们把它们排除在外。

答案 1 :(得分:0)

你应该能够以与传递信件相同的方式传递号码。例如:

SendKeys.SendWait("{A}");  //sends the letter 'A'
SendKeys.SendWait("{5}");  //sends the number '5'