MHookEventArgs.cs 492 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. namespace LYFZ.OtherExpansion.SkinControl
  3. {
  4. public class MHookEventArgs : EventArgs
  5. {
  6. private ButtonStatus mButton;
  7. private int x;
  8. private int y;
  9. public ButtonStatus MButton
  10. {
  11. get
  12. {
  13. return this.mButton;
  14. }
  15. }
  16. public int X
  17. {
  18. get
  19. {
  20. return this.x;
  21. }
  22. }
  23. public int Y
  24. {
  25. get
  26. {
  27. return this.y;
  28. }
  29. }
  30. public MHookEventArgs(ButtonStatus btn, int cx, int cy)
  31. {
  32. this.mButton = btn;
  33. this.x = cx;
  34. this.y = cy;
  35. }
  36. }
  37. }