我正在尝试使用以下C#代码在用户控件上绘制一个7 x 5网格:
Pen p = _createPen( Brushes.Red );
int slotWidth = this.Width / 7;
int slotHeight = this.Height / 5;
// columns = days
for ( int c = 1; c < 7; c++ )
{
// rows = weeks
for ( int r = 1; r < 5; r++ )
{
g.FillRectangle( Brushes.LightGray, new Rectangle( 1, ( ( r - 1 ) * slotHeight ) + 1, this.Width - 2, 10 ) );
g.DrawLine( p, new Point( 0, r * slotHeight ), new Point( this.Width, r * slotHeight ) );
}
g.DrawLine( p, new Point( c * slotWidth, 1 ), new Point( c * slotWidth, this.Height - 2 ) );
}
}
我遇到的问题是最后一列的线条正在绘制填充的矩形,但其他的不是。我不确定为什么首先完成FillRectangle()
,以便随后的DrawLine()
方法应该覆盖矩形,但它没有这样做。
代码已添加到用户控件的Paint()
事件中。
答案 0 :(得分:4)
简单放置一行:
g.DrawLine(p, new Point(c * slotWidth, 1), new Point(c * slotWidth, this.Height - 2));
。
// columns = days
for (int c = 1; c < 7; c++)
{
g.DrawLine(p, new Point(c * slotWidth, 1), new Point(c * slotWidth, this.Height - 2));
// rows = weeks
for (int r = 1; r < 5; r++)
{
g.FillRectangle(Brushes.LightGray, new Rectangle(1, ((r - 1) * slotHeight) + 1, this.Width - 2, 10));
g.DrawLine(p, new Point(0, r * slotHeight), new Point(this.Width, r * slotHeight));
}
}
最后一行是绘制其他行,因为没有下一次迭代。在最后一次迭代之前的迭代中,每次使用矩形红色列线时都会重复绘制。