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

11 lines
175 B
C#

using System;
using CPF.ReoGrid.Interaction;
namespace CPF.ReoGrid.Events
{
public class WorksheetKeyEventArgs : EventArgs
{
public KeyCode KeyCode { get; set; }
}
}