Answers for "c# show form and close current"

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

Browse Popular Code Answers by Language