CPF/CPF.ReoGrid/Events/DrawingEventArgs.cs

20 lines
364 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.Drawing;
using CPF.ReoGrid.Rendering;
namespace CPF.ReoGrid.Events
{
public class DrawingEventArgs : EventArgs
{
public RDrawingContext Context { get; private set; }
public Rect Bounds { get; private set; }
internal DrawingEventArgs(RDrawingContext dc, Rect bounds)
{
this.Context = dc;
this.Bounds = bounds;
}
}
}