喜 在winforms中如何在TableLayoutPanel中绘制(fillRectangle)单个单元格? 请不要使用其他面板。
答案 0 :(得分:7)
您必须订阅CellPaint事件。 举个例子:
private void tableLayoutPanel_CellPaint(object sender, TableLayoutCellPaintEventArgs e)
{
if (e.Row == 0 && e.Column == 1)
{
e.Graphics.FillRectangle(new SolidBrush(Color.Black), e.CellBounds);
}
}