16 lines
250 B
C#
16 lines
250 B
C#
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;
|
|
}
|
|
}
|
|
}
|