CPF/CPF.ReoGrid/Drawing/MouseEventArgs.cs
2024-06-24 10:15:59 +08:00

20 lines
379 B
C#

using System;
using CPF.Drawing;
using CPF.ReoGrid.Interaction;
namespace CPF.ReoGrid.Drawing
{
public class MouseEventArgs : EventArgs
{
public Point Location { get; protected set; }
public MouseButtons Buttons { get; protected set; }
public MouseEventArgs(Point location, MouseButtons buttons)
{
this.Location = location;
this.Buttons = buttons;
}
}
}