在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例Windows系统编程 → 定时发送模拟按键

定时发送模拟按键

Windows系统编程

下载此实例
  • 开发语言:C#
  • 实例大小:0.04M
  • 下载次数:56
  • 浏览次数:519
  • 发布时间:2020-09-13
  • 实例类别:Windows系统编程
  • 发 布 人:riverspace
  • 文件格式:.7z
  • 所需积分:3
 相关标签: 发送 定时 按键 模拟

实例介绍

【实例简介】

定时向系统发送模拟按键,可以实现用快捷键完成定时执行某项操作的功能。

【实例截图】

【核心代码】

            /// <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);

            #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 键

            //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 键

            //常用键 字母键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(/) 键
            #endregion

            #endregion

            /// <summary>
            /// 默认按下ctrl shift切换输入法
            /// </summary>
            /// <param name= sender ></param>
            /// <param name= e ></param>
            private void button1_Click(object sender, EventArgs e)
            {
                //模拟按下ctrl键
                keybd_event(vbKeyControl, 0, 0, 0);
                //模拟按下shift键
                keybd_event(vbKeyShift, 0, 0, 0);
                //松开按键shift
                keybd_event(vbKeyShift, 0, 2, 0);
                //松开按键ctrl
                keybd_event(vbKeyControl, 0, 2, 0);
            }

实例下载地址

定时发送模拟按键

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警