Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. System.Drawing.SolidBrush myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Red);
  2. System.Drawing.Graphics formGraphics = this.CreateGraphics();
  3. formGraphics.FillEllipse(myBrush, new Rectangle(0,0,200,300));
  4. myBrush.Dispose();
  5. formGraphics.Dispose();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement