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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:17:37+00:00 2026-05-14T03:17:37+00:00

How do i dynamically removing/adding(cancel the removal) form area using region and graphics path

  • 0

How do i dynamically removing/adding(cancel the removal) form area using region and graphics path class

  • 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-14T03:17:37+00:00Added an answer on May 14, 2026 at 3:17 am

    To change the shape of your Form dynamically, just set the Region property of the form to a new Region object created from a GraphicsPath. For example, a form with a single button on it could change it’s shape like this: (working example)

    using System;
    using System.Drawing;
    using System.Drawing.Drawing2D;
    using System.Windows.Forms;
    
    namespace Sample
    {
        public class ShapedForm : Form
        {
            Button testbutton;
    
            public ShapedForm()
            {
                // Create a button.
                testbutton = new Button();
                testbutton.Location = new Point(10, 10);
                testbutton.Size = new Size(50, 50);
                testbutton.Text = "Click me!";
                testbutton.Click += new EventHandler(this.testbutton_Click);
                this.Controls.Add(testbutton);
    
                // Remove the border around the form.
                this.FormBorderStyle = FormBorderStyle.None;
    
                // Set the initial shape of the form to an ellipse.
                GraphicsPath path = new GraphicsPath();
                path.AddEllipse(0, 0, 200, 100);
    
                this.Region = new Region(path);
            }
    
            private void testbutton_Click(object sender, EventArgs e)
            {
                // Change the shape of the form to some other ellipse.
                GraphicsPath path = new GraphicsPath();
                path.AddEllipse(0, 0, 100, 100);
                path.AddEllipse(120, 40, 50, 50);
    
                this.Region = new Region(path);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 351k
  • Answers 351k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer toolTip1.Show(_toolTipText, this, new Point(lblRevisionQuestion.Left + e.X + 1, lblRevisionQuestion.Top +… May 14, 2026 at 7:15 am
  • Editorial Team
    Editorial Team added an answer I have no idea where the => 1 comes from… May 14, 2026 at 7:15 am
  • Editorial Team
    Editorial Team added an answer What about: echo '<form name="login-form" id="login-form" method="post" action="./index.php?'.$_SERVER['QUERY_STRING'].'">'; May 14, 2026 at 7:15 am

Related Questions

I am dynamically adding script tags to the DOM so I can download JSON
So, I'm trying to dynamically add a button to a site to give the
Possible Duplicate: How to display row numbers in a ListView? Currently I am using
I'm currently re-using JUnit 4 tests from another project against my code. I obtain
I have the following array setup, i,e: var myArray = new Array(); Using this

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.