From 52fbefb8034c99c8e78dff0a208a3a69cbca9b43 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Wed, 29 Apr 2026 14:58:53 +0200 Subject: [PATCH] [chore:] added missing help- and about-links --- MainWindow.axaml.cs | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) 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)