CPF/CPF.ReoGrid/Events/CellEventArgs.cs

15 lines
204 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.Events
{
public class CellEventArgs : EventArgs
{
public Cell Cell { get; protected set; }
public CellEventArgs(Cell cell)
{
this.Cell = cell;
}
}
}