本文實(shí)例講述了C#繪制橢圓的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace WindowsApplication2{  public partial class Form4 : Form  {    public Form4()    {      InitializeComponent();    }    bool drawElipse = false;    private void button1_Click(object sender, EventArgs e)    {      this.drawElipse = !this.drawElipse;      using (Graphics g = this.CreateGraphics())      {        if (this.drawElipse)        {          g.FillEllipse(Brushes.DarkBlue, this.ClientRectangle);        }        else        {          g.FillEllipse(SystemBrushes.Control, this.ClientRectangle);        }      }    }    private void Form4_Load(object sender, EventArgs e)    {    }  }}希望本文所述對大家的C#程序設(shè)計(jì)有所幫助。
新聞熱點(diǎn)
疑難解答
圖片精選