15 lines
285 B
C#
15 lines
285 B
C#
using System;
|
|
using CPF.ReoGrid.Interaction;
|
|
|
|
namespace CPF.ReoGrid.Views
|
|
{
|
|
internal class HeaderView : Viewport, IRangeSelectableView, IViewport, IView, IUserVisual
|
|
{
|
|
public HeaderView(IViewportController vc) : base(vc)
|
|
{
|
|
}
|
|
|
|
protected float headerAdjustBackup = 0f;
|
|
}
|
|
}
|