keybd_event和mouse_event取代winio.dll

目前流行的做法是使用winio模拟键盘硬件扫描码,但是winio并不稳定,时常有严重错误发生。使用keybd_event函数,这种方法非常简单,而且极为稳定。

一、keybd_event使用

详见:

https://www.cnblogs.com/xielong/p/6763121.html

//键盘事件

        #region bVk参数 常量定义

        public const byte vbKeyLButton = 0x1;    // 鼠标左键

        public const byte vbKeyRButton = 0x2;    // 鼠标右键

        public const byte vbKeyCancel = 0x3;    // CANCEL 键

        public const byte vbKeyMButton = 0x4;    // 鼠标中键

        public const byte vbKeyBack = 0x8;      // BACKSPACE 键

        public const byte vbKeyTab = 0x9;        // TAB 键

        public const byte vbKeyClear = 0xC;      // CLEAR 键

        public const byte vbKeyReturn = 0xD;    // ENTER 键

        public const byte vbKeyShift = 0x10;    // SHIFT 键

        public const byte vbKeyControl = 0x11;  // CTRL 键

        public const byte vbKeyAlt = 18;        // Alt 键  (键码18)

        public const byte vbKeyMenu = 0x12;      // MENU 键

        public const byte vbKeyPause = 0x13;    // PAUSE 键

        public const byte vbKeyCapital = 0x14;  // CAPS LOCK 键

        public const byte vbKeyEscape = 0x1B;    // ESC 键

        public const byte vbKeySpace = 0x20;    // SPACEBAR 键

        public const byte vbKeyPageUp = 0x21;    // PAGE UP 键

        public const byte vbKeyEnd = 0x23;      // End 键

        public const byte vbKeyHome = 0x24;      // HOME 键

        public const byte vbKeyLeft = 0x25;      // LEFT ARROW 键

        public const byte vbKeyUp = 0x26;        // UP ARROW 键

        public const byte vbKeyRight = 0x27;    // RIGHT ARROW 键

        public const byte vbKeyDown = 0x28;      // DOWN ARROW 键

        public const byte vbKeySelect = 0x29;    // Select 键

        public const byte vbKeyPrint = 0x2A;    // PRINT SCREEN 键

        public const byte vbKeyExecute = 0x2B;  // EXECUTE 键

        public const byte vbKeySnapshot = 0x2C;  // SNAPSHOT 键

        public const byte vbKeyDelete = 0x2E;    // Delete 键

        public const byte vbKeyHelp = 0x2F;      // HELP 键

        public const byte vbKeyNumlock = 0x90;  // NUM LOCK 键

        //常用键 字母键A到Z

        public const byte vbKeyA = 65;

        public const byte vbKeyB = 66;

        public const byte vbKeyC = 67;

        public const byte vbKeyD = 68;

        public const byte vbKeyE = 69;

        public const byte vbKeyF = 70;

        public const byte vbKeyG = 71;

        public const byte vbKeyH = 72;

        public const byte vbKeyI = 73;

        public const byte vbKeyJ = 74;

        public const byte vbKeyK = 75;

        public const byte vbKeyL = 76;

        public const byte vbKeyM = 77;

        public const byte vbKeyN = 78;

        public const byte vbKeyO = 79;

        public const byte vbKeyP = 80;

        public const byte vbKeyQ = 81;

        public const byte vbKeyR = 82;

        public const byte vbKeyS = 83;

        public const byte vbKeyT = 84;

        public const byte vbKeyU = 85;

        public const byte vbKeyV = 86;

        public const byte vbKeyW = 87;

        public const byte vbKeyX = 88;

        public const byte vbKeyY = 89;

        public const byte vbKeyZ = 90;

        //数字键盘0到9

        public const byte vbKey0 = 48;    // 0 键

        public const byte vbKey1 = 49;    // 1 键

        public const byte vbKey2 = 50;    // 2 键

        public const byte vbKey3 = 51;    // 3 键

        public const byte vbKey4 = 52;    // 4 键

        public const byte vbKey5 = 53;    // 5 键

        public const byte vbKey6 = 54;    // 6 键

        public const byte vbKey7 = 55;    // 7 键

        public const byte vbKey8 = 56;    // 8 键

        public const byte vbKey9 = 57;    // 9 键

        public const byte vbKeyNumpad0 = 0x60;    //0 键

        public const byte vbKeyNumpad1 = 0x61;    //1 键

        public const byte vbKeyNumpad2 = 0x62;    //2 键

        public const byte vbKeyNumpad3 = 0x63;    //3 键

        public const byte vbKeyNumpad4 = 0x64;    //4 键

        public const byte vbKeyNumpad5 = 0x65;    //5 键

        public const byte vbKeyNumpad6 = 0x66;    //6 键

        public const byte vbKeyNumpad7 = 0x67;    //7 键

        public const byte vbKeyNumpad8 = 0x68;    //8 键

        public const byte vbKeyNumpad9 = 0x69;    //9 键

        public const byte vbKeyMultiply = 0x6A;  // MULTIPLICATIONSIGN(*)键

        public const byte vbKeyAdd = 0x6B;        // PLUS SIGN(+) 键

        public const byte vbKeySeparator = 0x6C;  // ENTER 键

        public const byte vbKeySubtract = 0x6D;  // MINUS SIGN(-) 键

        public const byte vbKeyDecimal = 0x6E;    // DECIMAL POINT(.) 键

        public const byte vbKeyDivide = 0x6F;    // DIVISION SIGN(/) 键

        //F1到F12按键

        public const byte vbKeyF1 = 0x70;  //F1 键

        public const byte vbKeyF2 = 0x71;  //F2 键

        public const byte vbKeyF3 = 0x72;  //F3 键

        public const byte vbKeyF4 = 0x73;  //F4 键

        public const byte vbKeyF5 = 0x74;  //F5 键

        public const byte vbKeyF6 = 0x75;  //F6 键

        public const byte vbKeyF7 = 0x76;  //F7 键

        public const byte vbKeyF8 = 0x77;  //F8 键

        public const byte vbKeyF9 = 0x78;  //F9 键

        public const byte vbKeyF10 = 0x79;  //F10 键

        public const byte vbKeyF11 = 0x7A;  //F11 键

        public const byte vbKeyF12 = 0x7B;  //F12 键

        #endregion

        #region 引用win32api方法

        /// <summary>

        /// 导入模拟键盘的方法

        /// </summary>

        /// <param name="bVk" >按键的虚拟键值</param>

        /// <param name= "bScan" >扫描码,一般不用设置,用0代替就行</param>

        /// <param name= "dwFlags" >选项标志:0:表示按下,2:表示松开</param>

        /// <param name= "dwExtraInfo">一般设置为0</param>

        [DllImport("user32.dll")]

        public static extern void keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo);

        #endregion

调用:

//模拟按下A键

            keybd_event(vbKeyA, 0, 0, 0);

            //模拟松开A键

            keybd_event(vbKeyA, 0, 2, 0);


二、mouse_event使用

详见:

http://blog.sina.com.cn/s/blog_71d894bd01013goa.html

//鼠标事件

        private readonly int MOUSEEVENTF_LEFTDOWN = 0x0002;//模拟鼠标移动

        private readonly int MOUSEEVENTF_MOVE = 0x0001;//模拟鼠标左键按下

        private readonly int MOUSEEVENTF_LEFTUP = 0x0004;//模拟鼠标左键抬起

        private readonly int MOUSEEVENTF_ABSOLUTE = 0x8000;//鼠标绝对位置

        private readonly int MOUSEEVENTF_RIGHTDOWN = 0x0008; //模拟鼠标右键按下

        private readonly int MOUSEEVENTF_RIGHTUP = 0x0010; //模拟鼠标右键抬起

        private readonly int MOUSEEVENTF_MIDDLEDOWN = 0x0020; //模拟鼠标中键按下

        private readonly int MOUSEEVENTF_MIDDLEUP = 0x0040;// 模拟鼠标中键抬起

        [DllImport("user32")]

        public static extern void mouse_event(int dwFlags, int dx, int dy, int dwData, int dwExtraInfo);

        //自定义鼠标移动事件

        private void mouse_yd(int x, int y)

        {

            mouse_event(MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE, x * 65535 / 1600, y * 65535 / 900, 0, 0);//移动到需要点击的位置

        }

        //自定义鼠标左键单击

        private void mouse_dj()

        {

            int x = Cursor.Position.X;

            int y = Cursor.Position.Y;

            mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_ABSOLUTE, x * 65535 / 1600, y * 65535 / 900, 0, 0);//点击

            mouse_event(MOUSEEVENTF_LEFTUP | MOUSEEVENTF_ABSOLUTE, x * 65535 / 1600, y * 65535 / 900, 0, 0);//抬起

        }

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,254评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,875评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,682评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,896评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,015评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,152评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,208评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,962评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,388评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,700评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,867评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,551评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,186评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,901评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,689评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,757评论 2 351

推荐阅读更多精彩内容

  • 给自己的总是很多期待,期待更多的美好的回忆,我不要现在,不求飞黄腾达,只求让自己心安理得的面对很多事情,秋天一转眼...
    一个人的光阴阅读 363评论 0 2
  • 1-------- 走进前端 2-------- jQuery 3-------- CSS 4-------- A...
    依依玖玥阅读 2,320评论 0 34
  • 昨天深夜,女星景甜在微博上发文“想你的兔zhi”,并配上6张自拍照,没想到体育界男神张继科居然在下面点赞评论,“兔...
    五幻巧阅读 553评论 0 0
  • 营销而已! 营销而已! 营销而已! 古天乐前晚出席名表活动获大会赠送名表,当他拿上手给传媒拍照时竟一时失手,名表直...
    纳雪风阅读 377评论 0 0
  • 感恩邵总一天轻松喜悦自然无痕的生命智慧的分享,感恩自己有福报到达现场沐浴智慧。 由于带孩子在场内待不住,我相信我错...
    寸心洁白阅读 120评论 1 1