diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 0bf4604..1328265 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -125,12 +125,34 @@ public partial class MainWindow : Window private void MnuAbout_OnClick(object? sender, RoutedEventArgs e) { - throw new NotImplementedException(); + try + { + Process.Start(new ProcessStartInfo + { + FileName = "https://mypapercloud.de/logof/", + UseShellExecute = true // Wichtig für Plattformübergreifendes Öffnen + }); + } + catch (Exception ex) + { + Console.WriteLine($"Fehler beim Öffnen des Links: {ex.Message}"); + } } private void MnuHelp_OnClick(object? sender, RoutedEventArgs e) { - throw new NotImplementedException(); + try + { + Process.Start(new ProcessStartInfo + { + FileName = "https://mypapercloud.de/logof/wiki/", + UseShellExecute = true // Wichtig für Plattformübergreifendes Öffnen + }); + } + catch (Exception ex) + { + Console.WriteLine($"Fehler beim Öffnen des Links: {ex.Message}"); + } } private void MnuGit_OnClick(object? sender, RoutedEventArgs e)