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();
注意:以上代碼片段僅為示例,實際使用時需要根據具體需求進行調整。