コード例 #1
0
 /// <summary>
 ///     Fills the inside of an rectangle.
 /// </summary>
 /// <param name="rect">The rectangle to fill.</param>
 public void FillRectangle(Rectangle rect)
 {
     _graphics.FillRectangle(FillBrush, rect.X, rect.Y, rect.Width, rect.Height);
 }
コード例 #2
0
ファイル: GDIGraphics.cs プロジェクト: billings7/EscherTilier
 /// <summary>
 ///     Fills the inside of an rectangle.
 /// </summary>
 /// <param name="rect">The rectangle to fill.</param>
 public void FillRectangle(Rectangle rect)
 {
     _graphics.FillRectangle(FillBrush, rect.X, rect.Y, rect.Width, rect.Height);
 }
コード例 #3
0
 /// <summary>
 ///     Draws a rectangle.
 /// </summary>
 /// <param name="rect">The rectangle to draw.</param>
 public void DrawRectangle(Rectangle rect)
 {
     _graphics.DrawRectangle(LinePen, rect.X, rect.Y, rect.Width, rect.Height);
 }
コード例 #4
0
ファイル: GDIGraphics.cs プロジェクト: billings7/EscherTilier
 /// <summary>
 ///     Draws a rectangle.
 /// </summary>
 /// <param name="rect">The rectangle to draw.</param>
 public void DrawRectangle(Rectangle rect)
 {
     _graphics.DrawRectangle(LinePen, rect.X, rect.Y, rect.Width, rect.Height);
 }