C# GDI(Graphics Device Interface)是一种用于绘制图形和图像的API。下面是使用C# GDI绘制图形的一些基本步骤:
using System.Drawing;
using System.Drawing.Drawing2D;
Graphics graphics = this.CreateGraphics();
Pen pen = new Pen(Color.Red, 2); // 创建红色画笔,线宽为2个像素
Brush brush = new SolidBrush(Color.Blue); // 创建蓝色刷子
graphics.DrawLine(pen, startPoint, endPoint); // 绘制直线
graphics.DrawRectangle(pen, x, y, width, height); // 绘制矩形
graphics.DrawEllipse(pen, x, y, width, height); // 绘制椭圆
graphics.FillRectangle(brush, x, y, width, height); // 填充矩形
graphics.FillEllipse(brush, x, y, width, height); // 填充椭圆
pen.Dispose();
brush.Dispose();
graphics.Dispose();
注意:以上代码片段仅为示例,实际使用时需要根据具体需求进行调整。