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 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

Related Questions

Currently I have a functioning code for dynamically adding and removing form inputs on
I have a form/table that is dynamically altered via JS by adding/removing rows (form
Here is a function from raislcasts.com complex-form-examples about dynamically adding field to form. The
I want to be able to modify Object dynamically by adding / removing properties
Basically, the codes I have is from here : http://ranafaisal.wordpress.com/2009/02/17/dynamically-adding-removing-textboxes-in-aspnet-repeater/ However, the thing is
I'm using jQuery to let users dynamically add and remove form fields, but it's
I'm using a BoxLayout and removing components from it dynamically, something like this: public
I am adding and removing fragment dynamically in android while removing fragment .I am
I have created user control container (panel actually) which dynamically adding and removing user
I have a form where I'm dynamically adding the ability to upload files with

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.