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

  • SEARCH
  • Home
  • 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 8019073
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T21:16:44+00:00 2026-06-04T21:16:44+00:00

I am having trouble drawing graphics on a simple form. My code compiles and

  • 0

I am having trouble drawing graphics on a simple form. My code compiles and runs, but the intended red box does not show up.

I am using the full .NET Framework 4 in Visual Studio 2010.

What is going wrong, and how can it be fixed?

private void Form1_Load(object sender, EventArgs e)
{
    System.Drawing.Graphics graphicsObj;
    graphicsObj = this.CreateGraphics();
    Pen myPen = new Pen(System.Drawing.Color.Red, 5);
    Rectangle myRectangle = new Rectangle(20, 20, 250, 200);
    graphicsObj.DrawRectangle(myPen, myRectangle);
}

EDIT: Working But Slow Code

    void BatteryPaint(object sender, EventArgs e)
    {
        TabPage page = (TabPage)sender;
        if (!controlsSetup)
        {
            populateBatteryTab(page);
            controlsSetup = true;
        }
        //Create the items
        Rectangle busBar = new Rectangle();
        Rectangle batPack = new Rectangle();
        Rectangle pack1Outline = new Rectangle();
        Rectangle pack2Outline = new Rectangle();
        Rectangle pack3Outline = new Rectangle();
        Rectangle pack4Outline = new Rectangle();

        Color GreenZone = Color.FromArgb(150, 0, 255, 0);
        Color YellowZone = Color.FromArgb(150, 255, 255, 0);
        Color RedZone = Color.FromArgb(150, 255, 0, 0);
        Color greyZone = Color.FromArgb(200, 200, 200, 200);

        Graphics graphicControl = page.CreateGraphics();

        SolidBrush busBarBrush = new SolidBrush(Color.Peru);
        SolidBrush GreenBrush = new SolidBrush(GreenZone);
        SolidBrush GreyBrush = new SolidBrush(greyZone);

        Pen packPen = new Pen(Color.LightGray, (float)8);


        Point busBarTop = new Point(page.Width / 64, page.Height / 32);
        Point busBarBottom = new Point(busBarTop.X, busBarTop.Y + page.Height / 6);

        //change the properties
        //Bus Bar Top
        busBar.Width = page.Width*153 / 640;
        busBar.Height = page.Height / 64;
        busBar.Location = busBarTop;
        graphicControl.FillRectangle(busBarBrush, busBar);

        //Bus Bar Bottom
        busBar.Location = busBarBottom;
        graphicControl.FillRectangle(busBarBrush, busBar);



        //Pack 1
        batPack.Width = page.Width / 20;
        batPack.Height = (busBarBottom.Y + busBar.Height) - busBarTop.Y;
        batPack.Location = new Point(busBarTop.X + page.Width / packSpacingMultiplier, busBarTop.Y);
        pack1Outline.Width = batOutlineWidth;
        graphicControl.FillRectangle(GreenBrush, batPack);
        pack1Outline.Height = (3 * (Battery.Width + page.Width / batSpacingMultiplier) + page.Width / batSpacingMultiplier);
        pack1Outline.Location = new Point(BatPack1.X - (page.Width / batSpacingMultiplier), BatPack1.Y - (page.Width / batSpacingMultiplier));
        for(int numBats = 0; numBats < 30; numBats++)
        {
            Battery.Location = new Point(BatPack1.X + ((numBats % 10) * (Battery.Width + page.Width / batSpacingMultiplier)), BatPack1.Y + ((numBats / 10) * (Battery.Width + page.Width / batSpacingMultiplier)));
            graphicControl.FillEllipse(new SolidBrush(BatteryZone(0.00)), Battery);
        }

        //Pack 2
        batPack.Location = new Point(batPack.Location.X + batPack.Width + page.Width / packSpacingMultiplier, batPack.Location.Y);
        graphicControl.FillRectangle(GreenBrush, batPack);
        pack2Outline.Width = batOutlineWidth;
        pack2Outline.Height = (3 * (Battery.Width + page.Width / batSpacingMultiplier) + page.Width / batSpacingMultiplier);
        pack2Outline.Location = new Point(BatPack2.X - (page.Width / batSpacingMultiplier), BatPack2.Y - (page.Width / batSpacingMultiplier));
        for(int numBats = 0; numBats < 30; numBats++)
        {
            Battery.Location = new Point(BatPack2.X + ((numBats % 10) * (Battery.Width + page.Width / batSpacingMultiplier)), BatPack2.Y + ((numBats / 10) * (Battery.Width + page.Width / batSpacingMultiplier)));
            graphicControl.FillEllipse(new SolidBrush(BatteryZone(0.00)), Battery);
        }

        //Pack 3
        batPack.Location = new Point(batPack.Location.X + batPack.Width + page.Width / packSpacingMultiplier, batPack.Location.Y);
        graphicControl.FillRectangle(GreenBrush, batPack);
        pack3Outline.Width = batOutlineWidth;
        pack3Outline.Height = (3 * (Battery.Width + page.Width / batSpacingMultiplier) + page.Width / batSpacingMultiplier);
        pack3Outline.Location = new Point(BatPack3.X - (page.Width / batSpacingMultiplier), BatPack3.Y - (page.Width / batSpacingMultiplier));
        for(int numBats = 0; numBats < 30; numBats++)
        {
            Battery.Location = new Point(BatPack3.X + ((numBats % 10) * (Battery.Width + page.Width / batSpacingMultiplier)), BatPack3.Y + ((numBats / 10) * (Battery.Width + page.Width / batSpacingMultiplier)));
            graphicControl.FillEllipse(new SolidBrush(BatteryZone(0.00)), Battery);
        }

        //Pack 4
        batPack.Location = new Point(batPack.Location.X + batPack.Width + page.Width / packSpacingMultiplier, batPack.Location.Y);
        graphicControl.FillRectangle(GreyBrush, batPack);
        pack4Outline.Width = batOutlineWidth;
        pack4Outline.Height = (3 * (Battery.Width + page.Width / batSpacingMultiplier) + page.Width / batSpacingMultiplier);
        pack4Outline.Location = new Point(BatPack4.X - (page.Width / batSpacingMultiplier), BatPack4.Y - (page.Width / batSpacingMultiplier));
        for(int numBats = 0; numBats < 30; numBats++)
        {
            Battery.Location = new Point(BatPack4.X + ((numBats % 10) * (Battery.Width + page.Width / batSpacingMultiplier)), BatPack4.Y + ((numBats / 10) * (Battery.Width + page.Width / batSpacingMultiplier)));
            graphicControl.FillEllipse(new SolidBrush(BatteryZone(0.00)), Battery);
        }


        //add the controls
        graphicControl.DrawRectangle(packPen, pack1Outline);
        graphicControl.DrawRectangle(packPen, pack2Outline);
        graphicControl.DrawRectangle(packPen, pack3Outline);
        graphicControl.DrawRectangle(packPen, pack4Outline);
    }
  • 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-04T21:16:46+00:00Added an answer on June 4, 2026 at 9:16 pm

    You shouldn’t do your drawing in the Load event, which is fired before your form is even displayed for the first time. The window is repainted when it is displayed, which clears the graphics you’ve drawn. If you want a persistent rectangle, handle the Paint event instead:

    private void Form1_Paint(object sender, PaintEventArgs e)
    {
        System.Drawing.Graphics graphicsObj = e.Graphics;
        Pen myPen = new Pen(System.Drawing.Color.Red, 5);
        Rectangle myRectangle = new Rectangle(20, 20, 250, 200);
        graphicsObj.DrawRectangle(myPen, myRectangle);
    }
    

    If you don’t want a persistent rectangle (highly doubtful, but still possible), try handling the Shown event instead of the Load event.

    If the graphics displayed will be updated frequently (e.g. in a game), make sure to set DoubleBuffered to true and override OnPaint instead of handling an event:

    protected override void OnPaint(PaintEventArgs e)
    {
        Graphics g = e.Graphics;
        Pen myPen = new Pen(Color.Red, 5);
        g.DrawRectangle(myPen, 20, 20, 250, 200);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having trouble drawing a line within a group box in a simple
I'm trying to make a simple drawing app in c++, but i'm having trouble
I'm having trouble with a gradient drawing call. I have a Form that looks
I am having trouble with the Graphics that I am drawing on a Panel
I'm not quite sure exactly how Graphics work in Java so I having trouble
I'm having trouble drawing a simple grid using raphael.js. I'm using paper.path(), and everything
I'm having some trouble drawing out a sphere. std::vector<GLfloat> ballVerts; for(int i = 0;
I'm having trouble with my bingo application,I tried drawing a circle programmatically whenever a
I am trying to create a drawing area with canvas. I am having trouble
Having trouble with this code, wondering if I'm trying to achieve something impossible. I'm

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.