Inheritance: System.Windows.Forms.Form
示例#1
0
 private void InstallButton_Click(object sender, EventArgs e)
 {
     var installer = new InstallerComplete();
     this.Hide();
     installer.Closed += (s, args) => this.Close();
     installer.Show();
 }
示例#2
0
        private void InstallButton_Click(object sender, EventArgs e)
        {
            var installer = new InstallerComplete();

            this.Hide();
            installer.Closed += (s, args) => this.Close();
            installer.Show();
        }