3

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

我尝试使用:

SendKeys.SendWait("{NUMPAD1}");

但它说

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

所以我不知道 NumPad 的正确键码。

4

2 回答 2

2

出于好奇,我查看了 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);

现在我可以使用例如。SendKeys.Send("{NUM3}"). 但是,它似乎不适用于发送 alt 代码,所以也许这就是他们将它们排除在外的原因。

于 2017-07-13T09:55:55.153 回答
0

您应该能够以与传递字母相同的方式传递数字。例如:

SendKeys.SendWait("{A}");  //sends the letter 'A'
SendKeys.SendWait("{5}");  //sends the number '5'
于 2017-07-06T15:30:18.427 回答