CPF/CPF.ReoGrid/CellTypes/IHeaderBody.cs

19 lines
398 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.Drawing;
using CPF.ReoGrid.Events;
using CPF.ReoGrid.Rendering;
namespace CPF.ReoGrid.CellTypes
{
public interface IHeaderBody
{
void OnPaint(CellDrawingContext dc, Size headerSize);
bool OnMouseMove(Size headerSize, WorksheetMouseEventArgs e);
bool OnMouseDown(Size headerSize, WorksheetMouseEventArgs e);
void OnDataChange(int startRow, int endRow);
}
}