I have a form but want it to start a child form when I press a certain button. The result do I intend to return through a Singleton.
How do I do this (the form part of it)?
This is a discussion on Child form within the C# Programming forums, part of the General Programming Boards category; I have a form but want it to start a child form when I press a certain button. The result ...
I have a form but want it to start a child form when I press a certain button. The result do I intend to return through a Singleton.
How do I do this (the form part of it)?
Code:private void button_Click(/*args*/) { Form childForm = new Form(); childForm.Show(); }