CPF/CPF.ReoGrid/CellTypes/HeaderBody.cs

29 lines
529 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 class HeaderBody : IHeaderBody
{
public virtual void OnPaint(CellDrawingContext dc, Size headerSize)
{
}
public virtual bool OnMouseMove(Size headerSize, WorksheetMouseEventArgs e)
{
return false;
}
public virtual bool OnMouseDown(Size headerSize, WorksheetMouseEventArgs e)
{
return false;
}
public virtual void OnDataChange(int startRow, int endRow)
{
}
}
}