CPF/CPF.ReoGrid/Views/HeaderView.cs

15 lines
285 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
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;
}
}