I want to show another form(Form2) with button click. Basically When the button is clicked in Form1, another form(Form2) should show, this should not hide the Form1 though and should change the button text to "Hide Progress" in Form1. And when this button is clicked again the Form2 should hide and the text in button should change to "Show Progress".
Below is my effort to make this work. When I clicked the Show Progress Button, it brings the Form2 and changes the text in button as well. But when I clicked the button again instead of hiding the Form2, it opens another instance of Form2.
Probably reason behind is that, the bool value is not saved.
Here is my code for button event handler.
public partial class Main : Form
{
public string output_green, output_grey, output_blue, output_black;
public bool visible;
private void button1_Click(object sender, EventArgs e)
{
output progressWindow = new output();
if (visible == false)
{
progressWindow.Show();
button1.Text = "Hide Progress";
visible = true;
}
else
{
progressWindow.Show();
button1.Text = "Show Progress";
visible = false;
}
}
}
How can I achieve that I need to.
Problem:
Each time you click
button1
a new progressWindow has been initialized.Also you are using
progressWindow.Show()
instead ofHide()
in else part.Solution:
Declare
progressWindow
out ofbutton1_Click
. And then initialize it frombutton1_Click
. Now it will be initialized only once (usingif
).