From 8659a27d0156dfd0d8af5a67fefb7cb3f62b3b69 Mon Sep 17 00:00:00 2001 From: iTob Date: Mon, 20 Jan 2025 19:46:22 +0100 Subject: [PATCH] wip --- src/CamBooth/CamBooth.App/MainWindow.xaml.cs | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/CamBooth/CamBooth.App/MainWindow.xaml.cs b/src/CamBooth/CamBooth.App/MainWindow.xaml.cs index c534d30..b8edd54 100644 --- a/src/CamBooth/CamBooth.App/MainWindow.xaml.cs +++ b/src/CamBooth/CamBooth.App/MainWindow.xaml.cs @@ -49,7 +49,6 @@ public partial class MainWindow : Window this.SetVisibilityDebugConsole(this._isDebugConsoleVisible); this.SetVisibilityPicturePanel(this._isPicturePanelVisible); _ = this._pictureGalleryService.LoadThumbnailsToCache(); - CreateMessageBox(); this.Closing += OnClosing; logger.Info("MainWindow initialized"); } @@ -111,20 +110,12 @@ public partial class MainWindow : Window } catch (Exception exception) { - this.CreateMessageBox(); + System.Windows.MessageBox.Show("Sorry, da ging was schief!"); this._logger.Info(exception.Message); } } - private void CreateMessageBox() - { - // - // - // - } - - private void SetVisibilityPicturePanel(object sender, RoutedEventArgs e) { this.SetVisibilityPicturePanel(this._isPicturePanelVisible);