你好
在winforms中如何绘制(fillRectangle)TableLayoutPanel中的单个单元格?
请不要使用其他面板。

最佳答案

您必须订阅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);
        }
    }

09-19 15:45