AnotherReplayReader/About.xaml.cs
2021-10-19 23:13:28 +02:00

23 lines
505 B
C#

using System.Diagnostics;
using System.Windows;
namespace AnotherReplayReader
{
/// <summary>
/// About.xaml 的交互逻辑
/// </summary>
public partial class About : Window
{
public About()
{
InitializeComponent();
_idBox.Text = Auth.Id;
}
private void Hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e)
{
Process.Start(e.Uri.ToString());
}
}
}