绘制扇形
Posted feiyucha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绘制扇形相关的知识,希望对你有一定的参考价值。
实现效果:
知识运用:
Graphics类中的DrawPie方法
public void DrawPie (Pen pen,Rectangle rectangle, startAngle, float sweepAngle)
public void DrawPie (Pen pen, int x,int y int width ,int height, int startAngle ,int sweepAngle)
实现代码:
private void button1_Click(object sender, EventArgs e) { Graphics g = this.CreateGraphics(); Pen myPen = new Pen(Color.Black,2); g.DrawPie(myPen,30,20,200,140,0,240); }
以上是关于绘制扇形的主要内容,如果未能解决你的问题,请参考以下文章