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