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; } } }