C#實現的三種方式實現模擬鍵盤按鍵

1.System.Windows.Forms.SendKeys

組合鍵:Ctrl = ^ 、Shift = + 、Alt = % 
模擬按鍵:Aweb

private void button1_Click(object sender, EventArgs e) { textBox1.Focus(); SendKeys.Send("{A}"); }

模擬組合鍵:CTRL + Awindows

private void button1_Click(object sender, EventArgs e) { webBrowser1.Focus(); SendKeys.Send("^{A}"); }

 

SendKeys.Send // 異步模擬按鍵(不阻塞UI)異步

SendKeys.SendWait // 同步模擬按鍵(會阻塞UI直到對方處理完消息後返回)post

//這種方式適用於WinForm程序,在Console程序以及WPF程序中不適用ui

2.keybd_event

DLL引用spa

[DllImport("user32.dll", EntryPoint = "keybd_event", SetLastError = true)] public static extern void keybd_event(Keys bVk, byte bScan, uint dwFlags, uint dwExtraInfo);

 

模擬按鍵:Acode

private void button1_Click(object sender, EventArgs e) { textBox1.Focus(); keybd_event(Keys.A, 0, 0, 0); }

模擬組合鍵:CTRL + Aorm

public const int KEYEVENTF_KEYUP = 2; private void button1_Click(object sender, EventArgs e) { webBrowser1.Focus(); keybd_event(Keys.ControlKey, 0, 0, 0); keybd_event(Keys.A, 0, 0, 0); keybd_event(Keys.ControlKey, 0, KEYEVENTF_KEYUP, 0); }

3.PostMessage

上面兩種方式都是全局範圍呢,如今介紹如何對單個窗口進行模擬按鍵postmessage

模擬按鍵:A / 兩次同步

[DllImport("user32.dll", EntryPoint = "PostMessageA", SetLastError = true)] public static extern int PostMessage(IntPtr hWnd, int Msg, Keys wParam, int lParam); public const int WM_CHAR = 256; private void button1_Click(object sender, EventArgs e) { textBox1.Focus(); PostMessage(textBox1.Handle, 256, Keys.A, 2); }

 

模擬組合鍵:CTRL + A

1以下方式可能會失效,因此最好採用上述兩種方式
public const int WM_KEYDOWN = 256; public const int WM_KEYUP = 257; private void button1_Click(object sender, EventArgs e) { webBrowser1.Focus(); keybd_event(Keys.ControlKey, 0, 0, 0); keybd_event(Keys.A, 0, 0, 0); PostMessage(webBrowser1.Handle, WM_KEYDOWN, Keys.A, 0); keybd_event(Keys.ControlKey, 0, KEYEVENTF_KEYUP, 0); }
相關文章
相關標籤/搜索