Пример #1
0
 public KeyboardHook(HookMethod hooker)
     : base(hooker, HookType.Keyboard)
 {
     KeysDown = new HashSet<Keys>();
 }
Пример #2
0
 public WindowsHook(HookMethod hooker, HookType type)
 {
     this.hooker = hooker;
     this.type = type;
 }
Пример #3
0
 public MessageHook(HookMethod hooker)
     : base(hooker, HookType.Message)
 {
 }
Пример #4
0
 public MouseHook(HookMethod hooker)
     : base(hooker, HookType.Mouse)
 {
 }
Пример #5
0
 public WindowsHook(HookMethod hooker, HookType type)
 {
     this.hooker = hooker;
     this.type   = type;
 }
Пример #6
0
 public MessageHook(HookMethod hooker)
     : base(hooker, HookType.Message)
 {
 }