zoukankan      html  css  js  c++  java
  • C#实现的三种方式实现模拟键盘按键

    1.System.Windows.Forms.SendKeys

    组合键:Ctrl = ^ 、Shift = + 、Alt = % 
    模拟按键:A

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

    模拟组合键:CTRL + A

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

    SendKeys.Send // 异步模拟按键(不阻塞UI)

    SendKeys.SendWait // 同步模拟按键(会阻塞UI直到对方处理完消息后返回)

    //这种方式适用于WinForm程序,在Console程序以及WPF程序中不适用

    2.keybd_event

    DLL引用

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

    模拟按键:A

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

    模拟组合键:CTRL + A

            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

    上面两种方式都是全局范围呢,现在介绍如何对单个窗口进行模拟按键

    模拟按键: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);
            }
  • 相关阅读:
    React Native基础&入门教程:以一个To Do List小例子,看props和state
    Xamarin 学习笔记
    网站HTTP升级HTTPS完全配置手册
    Xamarin 学习笔记
    Xamarin 学习笔记
    React Native基础&入门教程:初步使用Flexbox布局
    SpreadJS使用进阶指南
    用WijmoJS搭建您的前端Web应用 —— React
    【图解】FlexGrid Explorer 全功能问世
    只用最适合的!全面对比主流 .NET 报表控件
  • 原文地址:https://www.cnblogs.com/soundcode/p/9467102.html
Copyright © 2011-2022 走看看