C# 画布 Graphics 太极图
using System.Drawing;
using System.Drawing.Drawing2D;
// 创建画布,这里的画布是由Form提供的。
Graphics graphics = this.CreateGraphics();
// 底色填充为灰色
Brush white = new SolidBrush(Color.Gray);
graphics.FillRectangle(white, new Rectangle(0, 0, 300, 300));