Example #1
0
 public EventManager(
     RootControl root,
     InputManager inputManager,
     IKeyboardEventsCapturer keyboardEventsCapturer)
 {
     mouseEvents    = new MouseEventManager(root, inputManager);
     keyboardEvents = new KeyboardEventManager(root, inputManager, keyboardEventsCapturer);
 }
Example #2
0
 internal KeyboardEventManager(
     RootControl root,
     InputManager inputManager,
     IKeyboardEventsCapturer eventsCapturer)
 {
     this.root           = root;
     this.inputManager   = inputManager;
     this.eventsCapturer = eventsCapturer;
 }