Files
elwig/Elwig/Windows/AboutWindow.xaml.cs
Lorenz Stechauner 3c9b3c2db1
All checks were successful
Test / Run tests (push) Successful in 1m39s
Windows: Add AboutWindow
2025-09-15 23:09:52 +02:00

18 lines
490 B
C#

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 });
}
}
}