using System; using CPF.ReoGrid.Rendering; namespace CPF.ReoGrid.Views { internal class SpaceView : View { public override void Draw(CellDrawingContext dc) { dc.Graphics.FillRectangle(this.bounds, StaticResources.SystemColor_Control); } } }