e.Graphics.FillRectangle属性
时间: 2024-05-07 20:23:52 浏览: 128
定义一个名为rectangle 的矩形类,其属性数据为矩形左上角和右上角的点的坐标能计算矩形的面积
5星 · 资源好评率100%
e.Graphics.FillRectangle 是 C# 中 Graphics 类的一个方法,用于在指定的位置绘制一个填充的矩形。它的语法如下:
```
public void FillRectangle (System.Drawing.Brush brush, System.Drawing.RectangleF rect);
```
其中,brush 表示填充矩形的画刷,rect 表示矩形在绘图区域中的位置和大小。比如,以下代码会在 PictureBox 控件中绘制一个红色的矩形:
```csharp
private void pictureBox1_Paint(object sender, PaintEventArgs e)
{
Brush brush = new SolidBrush(Color.Red);
RectangleF rect = new RectangleF(10, 10, 100, 50);
e.Graphics.FillRectangle(brush, rect);
}
```
这段代码是在 PictureBox 控件的 Paint 事件中调用的,通过创建一个红色的画刷和一个矩形,然后调用 FillRectangle 方法进行绘制。
阅读全文