12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- namespace LYFZ.OtherExpansion.SkinControl
- {
- public class MHookEventArgs : EventArgs
- {
- private ButtonStatus mButton;
- private int x;
- private int y;
- public ButtonStatus MButton
- {
- get
- {
- return this.mButton;
- }
- }
- public int X
- {
- get
- {
- return this.x;
- }
- }
- public int Y
- {
- get
- {
- return this.y;
- }
- }
- public MHookEventArgs(ButtonStatus btn, int cx, int cy)
- {
- this.mButton = btn;
- this.x = cx;
- this.y = cy;
- }
- }
- }
|