C# 怎么用Graphics画一个圆形。

2025-01-07 18:48:02
推荐回答(2个)
回答1:

代码和注释如下:

Graphics gra = this.pictureBox1.CreateGraphics();
gra.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
Brush bush = new SolidBrush(Color.Green);//填充的颜色
gra.FillEllipse(bush, 10, 10, 100, 100);//画填充椭圆的方法,x坐标、y坐标、宽、高,如果是100,则半径为50

回答2:

你这也没画园亚。加上这句才开始画。
g.DrawEllipse(Pens.Red, rect);