winform 绘画填充代码
时间: 2023-02-08 17:42:05 浏览: 99
winform绘图
3星 · 编辑精心推荐
WinForm 中可以使用 Graphics 类进行绘画填充。下面是一个示例代码,它在窗体的 Paint 事件中绘制一个填充了红色的矩形:
```
private void Form1_Paint(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
SolidBrush brush = new SolidBrush(Color.Red);
g.FillRectangle(brush, 10, 10, 100, 100);
}
```
这个例子中,我们首先声明了一个 Graphics 对象 g 和一个 SolidBrush 对象 brush。然后,使用 brush 对象填充了一个位于 (10,10) 坐标,宽度为 100,高度为 100 的矩形。
阅读全文