21 lines
315 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|