25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
494 B

  1. // This code is distributed under MIT license.
  2. // Copyright (c) 2015 George Mamaladze
  3. // See license.txt or https://mit-license.org/
  4. namespace Gma.System.MouseKeyHook.Implementation
  5. {
  6. internal class AppEventFacade : EventFacade
  7. {
  8. protected override MouseListener CreateMouseListener()
  9. {
  10. return new AppMouseListener();
  11. }
  12. protected override KeyListener CreateKeyListener()
  13. {
  14. return new AppKeyListener();
  15. }
  16. }
  17. }