CPF/CPF.ReoGrid/Views/XRulerView.cs

18 lines
282 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
using CPF.ReoGrid.Rendering;
namespace CPF.ReoGrid.Views
{
internal class XRulerView : View
{
public XRulerView(IViewportController vc) : base(vc)
{
}
public override void Draw(CellDrawingContext dc)
{
throw new NotImplementedException();
}
}
}