Files
better-genshin-impact/BetterGenshinImpact/View/Windows/AboutWindow.xaml.cs
2025-03-26 10:38:02 +08:00

26 lines
622 B
C#

using System.Diagnostics;
using System.Windows;
using System.Windows.Navigation;
namespace BetterGenshinImpact.View.Windows
{
public partial class AboutWindow : Window
{
public AboutWindow()
{
InitializeComponent();
}
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri) { UseShellExecute = true });
e.Handled = true;
}
private void CloseButton_Click(object sender, RoutedEventArgs e)
{
Close();
}
}
}