CPF/CPF.ReoGrid/Views/SpaceView.cs

14 lines
257 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 SpaceView : View
{
public override void Draw(CellDrawingContext dc)
{
dc.Graphics.FillRectangle(this.bounds, StaticResources.SystemColor_Control);
}
}
}