CPF/CPF.ReoGrid/Core/CellComment.cs
2024-06-24 10:15:59 +08:00

21 lines
315 B
C#

using System;
using CPF.ReoGrid.Drawing;
using CPF.ReoGrid.Rendering;
namespace CPF.ReoGrid.Core
{
internal class CellComment : DrawingObject
{
internal Cell Cell { get; set; }
public CellComment(Cell cell)
{
this.Cell = cell;
}
protected override void OnPaint(RDrawingContext dc)
{
}
}
}