Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8305567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:08:35+00:00 2026-06-08T18:08:35+00:00

I want to draw many different shapes on a Windows Form. The following code

  • 0

I want to draw many different shapes on a Windows Form. The following code works only for rectangles.

// render list contains all shapes
List<Rectangle> DrawList = new List<Rectangle>();

// add example data
DrawList.Add(new Rectangle(10, 30, 10, 40));
DrawList.Add(new Rectangle(20, 10, 20, 10));
DrawList.Add(new Rectangle(10, 20, 30, 20));

// draw
private void Form1_Paint(object sender, PaintEventArgs e)
{
    Graphics g = e.Graphics;
    foreach (Rectangle Object in DrawList)
    {
        g.FillRectangle(new SolidBrush(Color.Black), Object);
    } 
}

How can I improve the code to handle any type of shapes like rectangles, lines, curves, and so on?

I think I will need a list which can contain objects of different types and a function to draw any object depending on its type of shape. But unfortunately I have no idea how to do that.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T18:08:37+00:00Added an answer on June 8, 2026 at 6:08 pm

    Something like this:

    public abstract class MyShape
    {
       public abstract void Draw(PaintEventArgs args);
    }
    
    public class MyRectangle : MyShape
    {
        public int Height { get; set; }
        public int Width { get;set; }
        public int X { get; set; }
        public int Y { get; set; }
    
        public override void Draw(Graphics graphics)
        {
            graphics.FillRectangle(
                new SolidBrush(Color.Black),
                new Rectangle(X, Y, Width, Height));
        }
    }
    
    public class MyCircle : MyShape
    {
        public int Radius { get; set; }
        public int X { get; set; }
        public int Y { get; set; }
    
        public override void Draw(Graphics graphics)
        {
            /* drawing code here */
        }        
    }
    
    private void Form1_Paint(object sender, PaintEventArgs e)
    {
        List<MyShape> toDraw = new List<MyShape> 
        {
            new MyRectangle
            {
                Height = 10,
                Width: 20,
                X = 0,
                Y = 0
            },
            new MyCircle
            {
               Radius = 5,
               X = 5,
               Y = 5
            }
        };
    
        toDraw.ForEach(s => s.Draw(e.Graphics));
    }
    

    Alternatively, you could create an extension method for each type you wish to draw. Example:

    public static class ShapeExtensions
    {
        public static void Draw(this Rectangle r, Graphics graphics)
        {
            graphics.FillRectangle(new SolidBrush(Color.Black), r);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an UIView in which I draw many shapes. I just want to
I want to draw many geo points with Leaflet. Therefore I want to use
I want to draw rectangle that is only specified percent high of panel im
i want to draw zebra lines in my form not a table, just lines
I want to Draw multiple line Graph with each line have different color and
I want to draw many polygons to the screen but i'm quickly noticing that
I want to draw a shape(many circles particularly) into a Specific Bitmap. I have
I want to draw an alpha mask image in code. Right now I do:
Using Python I want to be able to draw text at different angles using
I want to draw some data into a texture: many items in a row.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.