CPF/CPF.ReoGrid/Drawing/KeyboardEventArgs.cs

16 lines
250 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.ReoGrid.Interaction;
namespace CPF.ReoGrid.Drawing
{
public class KeyboardEventArgs : EventArgs
{
public KeyCode Keys { get; protected set; }
public KeyboardEventArgs(KeyCode keys)
{
this.Keys = keys;
}
}
}