CPF/CPF.ReoGrid/Events/WorksheetKeyEventArgs.cs

11 lines
175 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.ReoGrid.Interaction;
namespace CPF.ReoGrid.Events
{
public class WorksheetKeyEventArgs : EventArgs
{
public KeyCode KeyCode { get; set; }
}
}