CPF/CPF.ReoGrid/Core/CellComment.cs

21 lines
315 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
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)
{
}
}
}