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(); } } }