29 lines
529 B
C#
29 lines
529 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|