Answers for "c# go to another form"

C#
2

start new form c#

moreForm = new MoreForm();
    moreForm.Show();
    childForm.Close();
Posted by: Guest on September-19-2020
0

how to go to other forms in C#

introduction Intro = new introduction();

            this.Hide();
            Intro.ShowDialog();
Posted by: Guest on March-20-2020

C# Answers by Framework

Browse Popular Code Answers by Language