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

    模拟按键在.Net中有三种方式实现。

    第一种方式: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直到对方处理完消息后返回)

    第二种方式:keybd_event

    模拟按键:A


            [DllImport("user32.dll", EntryPoint = "keybd_event", SetLastError = true)]
            public static extern void keybd_event(Keys bVk, byte bScan, uint dwFlags, uint dwExtraInfo);
    
            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);
            }

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


    模拟按键: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

           如下方式可能会失效,所以最好采用上述两种方式


            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);
  • 相关阅读:
    LogMiner日志分析工具的使用
    V$SQL%知多少之二(V$SQL_PLAN)
    k8s中prometheus监控k8s外mysql
    mysql5.7下载
    【整理】Linux:set eux
    简单快速使用阿里云镜像仓库
    skywalking安装及使用(非容器版)
    建库、建表、造数据(微服务实战项目部分示例)
    常用环境变量配置(vim /etc/profile)
    Docker 容器默认root账号运行,很不安全!
  • 原文地址:https://www.cnblogs.com/cuihongyu3503319/p/8510178.html
Copyright © 2011-2022 走看看