prevent installer from closing during installation

This commit is contained in:
r3sus
2023-03-09 19:22:46 +03:00
parent 9c609ae28b
commit ec8dbc5a91
2 changed files with 31 additions and 0 deletions
+1
View File
@@ -621,6 +621,7 @@ namespace CleanFlashInstaller {
this.Name = "InstallForm"; this.Name = "InstallForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Clean Flash Player Dev Installer"; this.Text = "Clean Flash Player Dev Installer";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.InstallForm_FormClosing);
this.Load += new System.EventHandler(this.InstallForm_Load); this.Load += new System.EventHandler(this.InstallForm_Load);
((System.ComponentModel.ISupportInitialize)(this.flashLogo)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.flashLogo)).EndInit();
this.disclaimerPanel.ResumeLayout(false); this.disclaimerPanel.ResumeLayout(false);
+30
View File
@@ -293,5 +293,35 @@ If you ever change your mind, check out Clean Flash Player's website!";
debugChosen = MessageBox.Show("Are you sure you want to install the debug version?\n\nThis version is only meant to be used by experienced developers!\nIf you are not sure, choose No.", "Clean Flash Installer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes; debugChosen = MessageBox.Show("Are you sure you want to install the debug version?\n\nThis version is only meant to be used by experienced developers!\nIf you are not sure, choose No.", "Clean Flash Installer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes;
OpenBeforeInstall(); OpenBeforeInstall();
} }
private void InstallForm_FormClosing(object sender, FormClosingEventArgs e)
{
bool v1 = true;
// if installing
// note: msgbox not pauses the process
if (installPanel.Visible)
{
if (v1)
{
// hardlock, only force quit process
// follows current design since Back button is disabled
MessageBox.Show("Please, wait until process end", "Clean Flash Installer", MessageBoxButtons.OK, MessageBoxIcon.Warning);
e.Cancel = true;
}
else
// soft alternative, expert mode, todo: better warning of consequences
if (MessageBox.Show("Are you sure you want to interrupt the process ?", "Clean Flash Installer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No)
{
e.Cancel = true;
}
else
{
// use cases ?
// uninstall, currently not implemented
}
//todo: same for uninstaller: share same F
}
}
} }
} }