SendInput()按6而不是正确的

时间:2018-11-06 15:35:40

标签: c# sendinput

我正在尝试使用SendInput发送击键。例如,如果我尝试发送密钥A,则该代码有效,但是如果我尝试向右箭头键,则键入6。不知道为什么。

[DllImport("USER32.DLL")]
    public static extern bool SetForegroundWindow(IntPtr hWnd);

    [DllImport("USER32.DLL", CharSet = CharSet.Unicode)]
    public static extern IntPtr FindWindow(string lpClassName,
        string lpWindowName);

    [DllImport("user32.dll")]
    internal static extern uint SendInput(
        uint nInputs,
        [MarshalAs(UnmanagedType.LPArray), In] INPUT[] pInputs,
        int cbSize);

    private void button1_Click(object sender, EventArgs e)
    {
        SetForegroundWindow(FindWindow("Notepad", "Untitled - Notepad"));
        SendInputWithAPI();
    }


    void SendInputWithAPI()
    {
        INPUT[] Inputs = new INPUT[1];
        INPUT Input = new INPUT();

        Input.type = 1; // 1 = Keyboard Input
        Input.U.ki.wScan = ScanCodeShort.RIGHT;
        Input.U.ki.dwFlags = KEYEVENTF.SCANCODE;
        Inputs[0] = Input;


        SendInput(1, Inputs, INPUT.Size);
    }

btw ScanCodeShort.RIGHT返回77。 谢谢。

1 个答案:

答案 0 :(得分:-1)

扫描代码代表物理密钥。使用不同的键盘布局和状态,相同的物理键可能具有不同的含义,但其扫描代码将始终相同。即物理“数字键盘6”键可能表示向右箭头或数字6,具体取决于Num Lock的状态。

如果您的目标是“按下”逻辑“右箭头”,而不是物理键盘上的某个物理键(无论其当前含义如何),则应改用虚拟键代码。它们代表物理密钥的当前含义。假设您的INPUT structure declaration is correct

private const int INPUT_KEYBOARD = 1;
private const int VK_RIGHT = 0x27;
Input.type = INPUT_KEYBOARD;
Input.U.ki.wVk = VK_RIGHT;
Inputs[0] = Input;