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 6621617
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:17:23+00:00 2026-05-25T21:17:23+00:00

I am new to C++. I try to draw a polygon. My code can

  • 0

I am new to C++. I try to draw a polygon. My code can be built, but nothing shows in the form when I run it. Could anyone please give me some help. Thanks (Most of the stuff below was from the default VS template, I added a few lines only)

namespace DrawMyShape {

using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;

public ref class Form1 : public System::Windows::Forms::Form
{
public:
    Form1(void)
    {
        InitializeComponent();
    }

protected:
    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    ~Form1()
    {
        if (components)
        {
            delete components;
        }
    }

private:

    System::ComponentModel::Container ^components;

    void InitializeComponent(void)
    {
        this->components = gcnew System::ComponentModel::Container();
        this->Size = System::Drawing::Size(800,800);
        this->Text = L"Form1";
        this->Padding = System::Windows::Forms::Padding(0);
        this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
    }

    private: System::Void Form1_Paint(System::Object^  sender, System::Windows::Forms::PaintEventArgs^  e)
    {

        Graphics ^g = e->Graphics;  //require for drawing
        SolidBrush^ blackPen = gcnew SolidBrush( Color::Blue );

        // Create points that define polygon.
        Point point1 = Point(50,50);
        Point point2 = Point(100,25);
        Point point3 = Point(200,5);
        Point point4 = Point(250,50);
        Point point5 = Point(300,100);
        Point point6 = Point(350,200);
        Point point7 = Point(250,250);
        array<Point>^ curvePoints = {point1,point2,point3,point4,point5,point6,point7};

        // Draw polygon to screen.
        e->Graphics->FillPolygon( blackPen, curvePoints );

    }
};
}
  • 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-05-25T21:17:24+00:00Added an answer on May 25, 2026 at 9:17 pm

    You forgot to subscribe the Paint event:

            this->Paint += gcnew System::Windows::Forms::PaintEventHandler(this, &Form1::Form1_Paint);
    

    Click the lightning bolt icon in the Properties window and double-click Paint. The proper way to do this is to override the OnPaint() method.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm pretty proficient in PHP, but want to try something new. I'm also know
I try VBO by DMA. but it doesn't work. Svertex = new GLdouble**[nSlice+1]; Snormal
I've just get a new machine and try to checkout, build and launch my
When an exception is thrown or encountered: void ThrowException() { try { throw new
I try to create a new file inside a JSP and try to save
Whenever I try to add a new project to my SourceSafe repository it creates
When I try to create a new RegionInfo with certain ISO 3166 country codes
When I try to install a new instance of SQL Server 2008 Express on
When I try to create a new Maintenance Plan in SQL Server, I get
Try to see which cast is faster (not necessary better): new c++ case or

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.