how can i make a circular form by using c#

Recommended Answers

All 2 Replies

Hi

Graphics g = this.CreateGraphics();
  Pen pen = new Pen(Color.Red, 2);
  g.DrawEllipse(pen, 20, 14, 20, 20);

Regards,
Camilo

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.