You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 regels
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. }