19 lines
398 B
C#
19 lines
398 B
C#
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);
|
|
}
|
|
}
|