diff --git a/ServiceBus98/App.xaml b/ServiceBus98/App.xaml index 6bc7af6..f74d186 100644 --- a/ServiceBus98/App.xaml +++ b/ServiceBus98/App.xaml @@ -28,7 +28,83 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Copyright (C) 1998-2025 Tommy + + + diff --git a/ServiceBus98/Windows/About.xaml.cs b/ServiceBus98/Windows/AboutWindow.xaml.cs similarity index 61% rename from ServiceBus98/Windows/About.xaml.cs rename to ServiceBus98/Windows/AboutWindow.xaml.cs index d9a189b..17bf227 100644 --- a/ServiceBus98/Windows/About.xaml.cs +++ b/ServiceBus98/Windows/AboutWindow.xaml.cs @@ -17,11 +17,21 @@ namespace ServiceBus98 /// /// Interaction logic for About.xaml /// - public partial class About : Window + public partial class AboutWindow : Window { - public About() + public AboutWindow() { InitializeComponent(); } + + private void CloseCanExecute(object sender, CanExecuteRoutedEventArgs e) + { + e.CanExecute = true; + } + + private void CloseExecuted(object sender, ExecutedRoutedEventArgs e) + { + this.Close(); + } } }