我在这段代码中有一个问题,它显示我自己的单元格已填充。
这是代码:
private void tableLayoutPanel1_CellPaint(object sender, TableLayoutCellPaintEventArgs e)
{
for (int j = 0; j < 4; j++)
{
if (j % 3 == 0)
{
if (e.Column == j && e.Row == 1)
{
e.Graphics.FillRectangle(Brushes.White, e.CellBounds);
}
}
else
{
if (e.Column == j && e.Row == 1)
{
e.Graphics.FillRectangle(Brushes.Brown, e.CellBounds);
}
}
}
}
结果在这里:http: //prntscr.com/20e3pb