mirror of
https://github.com/ZuneDev/ZuneModdingHelper.git
synced 2026-07-27 13:12:21 -07:00
23 lines
517 B
C#
23 lines
517 B
C#
using System.Windows.Controls;
|
|
using System.Windows.Navigation;
|
|
|
|
namespace ZuneModdingHelper.Pages
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for AboutPage.xaml
|
|
/// </summary>
|
|
public partial class AboutPage : UserControl
|
|
{
|
|
public AboutPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void Link_RequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
{
|
|
App.OpenInBrowser(e.Uri.AbsoluteUri);
|
|
e.Handled = true;
|
|
}
|
|
}
|
|
}
|