SymphonyElectron/installer/win/WixSharpInstaller/ExitDialog.cs

20 lines
527 B
C#
Raw Normal View History

using WixSharp;
namespace Symphony
{
2020-10-26 07:17:05 -05:00
public partial class ExitDialog : WixSharp.UI.Forms.ManagedForm, IManagedDialog
{
2020-10-26 07:17:05 -05:00
public ExitDialog()
{
InitializeComponent();
}
2020-10-26 07:17:05 -05:00
private void ExitDialog_Load(object sender, System.EventArgs e)
{
2020-09-04 08:19:15 -05:00
// 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();
}
}
}