Answers for "close current form on button click in c# and show new form"

1

c# open a new form and close current

{
    this.Hide();
    Form1 f1 = new Form1();
    f1.ShowDialog();
    this.Close();
}
Posted by: Guest on July-05-2020
-1

how to close a form c#

this.Close();
Posted by: Guest on March-11-2020

Code answers related to "close current form on button click in c# and show new form"

Browse Popular Code Answers by Language