C#底层键盘勾子类
C#底层键盘勾子类Low-level keyboard intercept class to trap and suppress system keys
底层键盘勾子类, 来源网络。 C# Code: /// KEYBOARD.CS /// (c) 2006 by Emma Burrows /// This file contains the following items: /// - KeyboardHook: class to enable low-level keyboard hook using /// the Windows API. /// - KeyboardHookEventHandler: delegate to handle the KeyIntercepted /// event raised by the KeyboardHook class. /// - KeyboardHookEventArgs: EventArgs class to contain the information /// returned by the KeyIntercepted event. /// /// Change history: /// 17/06/06: 1.0 - First version. /// 18/06/06: 1.1 - Modified proc assignment in constructor to make class backward /// compatible with 2003. /// 10/07/06: 1.2 - Added support for modifier keys: /// -Changed filter in HookCallback to WM_KEYUP instead of WM_KEYDOWN /// -Imported GetKeyState from user32.dll /// -Moved native DLL imports to a separate internal class as this /// is a Good Idea according to Microsoft's guidelines /// 13/02/07: 1.3 - Improved modifier key support: /// -Added CheckModifiers() method /// -Deleted LoWord/HiWord methods as they weren't necessary /// -Implemented Barry Dorman's suggestion to AND GetKeyState /// values with 0x8000 to get their result /// 23/03/07: 1.4 - Fixed bug which made the Alt key appear stuck /// - Changed the line /// if (nCode >= 0 && (wParam == (IntPtr)WM_KEYUP || wParam == (IntPtr)WM_SYSKEYUP)) /// to /// if (nCode >= 0) /// { /// if (wParam == (IntPtr)WM_KEYUP || wParam == (IntPtr)WM_SYSKEYUP) /// ... /// Many thanks to "Scottie Numbnuts" for the solution. 扫一扫加作者微信
参考文档:
Delphi封装Novell LDAP底层API, 提供给C#.Net开发 C#中处理全局鼠标及键盘勾子 [原创]C#键盘勾子(Hook),屏蔽键盘活动.(源代码下载) C# 自动转换为半角 (输入法半角/全角切换) C#.Net Summary注释断行 C#.Net 静态构造器使用详解 C#.Net窗体多重继承构造器及Load事件执行顺序详解 标签:C# Winform+WebService+三层C/S结构快速开发平台 C#代码混淆及反编译(转) C#.Net版本自动更新程序及3种策略实现 C# Winform 制作可任意拖动的不规则背景图片窗体 C#可拖动窗体(实现无标题栏的登录窗体) C#设计模式-窗体基类模板方法定义 C#.NET 会计系统开发框架模板(C/S Winform架构) 巨献! C#.Net用户自定义控件制作教程
其它资料:
什么是C/S结构? | C/S框架核心组成部分 | C/S框架-WebService部署图 | C/S框架-权限管理 | C/S结构系统框架 - 5.1旗舰版介绍 | C/S结构系统框架 - 功能介绍 | C/S结构系统框架 - 产品列表 | C/S结构系统框架 - 应用展示(图) | 三层体系架构详解 | C/S架构轻量级快速开发框架 | C/S框架网客户案例 | WebApi快速开发框架 | C/S框架代码生成器 | 用户授权注册软件系统 | 版本自动升级软件 | 数据库底层应用框架 | CSFramework.CMS内容管理系统 | |