Files
ZuneModdingHelper/ZuneModdingHelper/Pages/AboutPage.xaml.cs
T
2024-05-13 22:51:26 -05:00

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;
}
}
}