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