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.

16 regels
314 B

  1. using System;
  2. namespace Gma.System.MouseKeyHook
  3. {
  4. public class KeyDownTxtEventArgs : EventArgs
  5. {
  6. public KeyEventArgsExt KeyEvent { get; }
  7. public string Chars { get; }
  8. public KeyDownTxtEventArgs(KeyEventArgsExt keyEvent, string chars)
  9. {
  10. KeyEvent = keyEvent;
  11. Chars = chars ?? string.Empty;
  12. }
  13. }
  14. }