码迷,mamicode.com
首页 > 其他好文 > 详细

绘制扇形

时间:2019-01-11 23:15:29      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:inf   arp   bubuko   运用   this   str   new   class   nta   

实现效果:

  技术分享图片

知识运用:

  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);
        }

 

绘制扇形

标签:inf   arp   bubuko   运用   this   str   new   class   nta   

原文地址:https://www.cnblogs.com/feiyucha/p/10257608.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!