vs2010 C# 键盘钩子
usingSystem;
usingSystem.Runtime.InteropServices;
usingSystem.Reflection;
usingSystem.Windows.Forms;
namespaceKeyboardHook
{
publicenumKeyboardEvents
{
KeyDown=0x0100,
KeyUp=0x0101,
SystemKeyDown=0x0104,
SystemKeyUp=0x0105
}
[StructLayo
下载地址
用户评论
vs2010 C# 键盘钩子