14 lines
257 B
C#
14 lines
257 B
C#
![]() |
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|