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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T00:48:33+00:00 2026-06-10T00:48:33+00:00

I use two Forms: Form1 contains button1 Form2 contains button2 and Panel1 My project

  • 0

I use two Forms:

Form1 contains button1

Form2 contains button2 and Panel1

My project starts using Form2. Then I click on button2 to show Form1

    private void button2_Click(object sender, EventArgs e)
    {
        Form1 Frm = new Form1();
        Frm.Show();
    }

Then on Form1, I click on button1 to hide Panel1 on Form2

    private void button1_Click(object sender, EventArgs e)
    {
        Form2 FormInstance = new Form2();
        FormInstance.displayInit();
        FormInstance.Refresh();
    }

displayInit() is a method inside Form2:

    public void displayInit()
    {
        panel1.Visible = false;
    }

But the panel is not hidden, due to a refresh issue, any idea please ?

  • 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-10T00:48:35+00:00Added an answer on June 10, 2026 at 12:48 am

    The standard way of having two forms (or any two classes) talk to each other is with events.

    In your case, add this to the top of the Form1 code:

    public event ClosePanelHandler ClosePanel;
    public delegate void ClosePanelHandler(object sender, EventArgs e);
    

    Then, in Form1‘s Button1_Click event (this raises the event):

     private void button1_Click(object sender, EventArgs e)
        {
         if (ClosePanel != null){
           ClosePanel(this, new EventArgs());
        }}
    

    –

    Finally, Form2 needs to handle the event (and be listening for it) in order to take action:

     private void HandleCloseRequest(object sender, EventArgs e)
        {
         panel1.Visible = false;
        }
    

    Also, modify

    private void button2_Click(object sender, EventArgs e)
        {
            Form1 Frm = new Form1();
            Frm.ClosePanel += HandleCloseRequest;
            Frm.Show();
        }
    

    I hope this helps a bit.

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

Sidebar

Related Questions

I have two forms on my website, and I use jQuery to submit them,
Scenario I have a windows forms application. I want to use two different WCF
I'm using a number of C# custom controls (forms, buttons, etc) which use a
I am writing an MDI application in C# that contains two child forms which
I have a C# program that has two forms. One form contains tab control
I have a project that contains 2 web application and I want to use
I have two radio buttons on my MVC form that I use to hide
i have two text inputs like the following, i don't want to use <form>
I use two different events for the callback to respond when the IndexedDB transaction
I use two Spinner in my App. One of them is initially disabled because

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.