20 lines
379 B
C#
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;
|
|
}
|
|
}
|
|
}
|