18 lines
282 B
C#
18 lines
282 B
C#
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();
|
|
}
|
|
}
|
|
}
|