KeyboardHookEventArgs.cs 364 B

1234567891011121314151617
  1. using System;
  2. using System.Windows.Input;
  3. namespace HandyControl.Data;
  4. public class KeyboardHookEventArgs : EventArgs
  5. {
  6. public bool IsSystemKey { get; }
  7. public Key Key { get; }
  8. public KeyboardHookEventArgs(int virtualKey, bool isSystemKey)
  9. {
  10. IsSystemKey = isSystemKey;
  11. Key = KeyInterop.KeyFromVirtualKey(virtualKey);
  12. }
  13. }