Answers for "hide form c#"

C#
1

hide form c#

private void button2_Click(object sender, EventArgs e) // this your button double click and you will find it
        {
            this.Hide();
        }
Posted by: Guest on February-06-2021
0

hide and show form c#

Setup setup = new Setup();
            this.Hide();
            Pairs pairs = new Pairs();


            pairs.Show();
Posted by: Guest on January-11-2021

C# Answers by Framework

Browse Popular Code Answers by Language