From 8e3724d73396be0bcf54a24fe600b6ebf4c048d4 Mon Sep 17 00:00:00 2001 From: Eveldee Date: Sat, 4 Dec 2021 15:35:41 +0100 Subject: [PATCH] Add success message --- ExeLauncher.GUI/MainWindow.xaml.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ExeLauncher.GUI/MainWindow.xaml.cs b/ExeLauncher.GUI/MainWindow.xaml.cs index 9049a97..78ddb50 100644 --- a/ExeLauncher.GUI/MainWindow.xaml.cs +++ b/ExeLauncher.GUI/MainWindow.xaml.cs @@ -129,6 +129,10 @@ namespace ExeLauncher.GUI MessageBox.Show(message, "Compilation error", MessageBoxButton.OK, MessageBoxImage.Error); } + else + { + MessageBox.Show($"Successfully generated launcher at: {dialog.FileName}", "Success", MessageBoxButton.OK, MessageBoxImage.Information); + } } }