23 lines
505 B
C#
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());
|
|
}
|
|
}
|
|
}
|