0

このコードには問題があり、自分のセルがいっぱいになっていることがわかります。

コードは次のとおりです。

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

4

0 に答える 0