20 lines
364 B
C#
20 lines
364 B
C#
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;
|
|
}
|
|
}
|
|
}
|