SymphonyElectron/installer/win/WixSharpInstaller/ExitDialog.cs
Mattias Gustavsson 8a9a7ca64d Renamed dialogs
2020-10-26 13:17:05 +01:00

20 lines
527 B
C#

using WixSharp;
namespace Symphony
{
public partial class ExitDialog : WixSharp.UI.Forms.ManagedForm, IManagedDialog
{
public ExitDialog()
{
InitializeComponent();
}
private void ExitDialog_Load(object sender, System.EventArgs e)
{
// Exit installation on completion (don't wait for user to confirm)
// After installation exits, the app will be auto launched, but that is specified in Symphony.cs
Shell.Exit();
}
}
}