Windows: Add AboutWindow
All checks were successful
Test / Run tests (push) Successful in 1m39s

This commit is contained in:
2025-09-15 23:02:49 +02:00
parent 98f8907817
commit 3c9b3c2db1
4 changed files with 55 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
using System.Diagnostics;
using System.Windows;
using System.Windows.Navigation;
namespace Elwig.Windows {
public partial class AboutWindow : Window {
public AboutWindow() {
InitializeComponent();
Version.Text = App.Version.ToString();
}
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e) {
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri) { UseShellExecute = true });
}
}
}