Files
myfriendsaround/main/Libs/GpsEmulator/GpsEmulator/DialogWindows/AboutDialog.xaml.cs
T

28 lines
689 B
C#

using System.Diagnostics;
using System.Windows;
namespace GpsEmulator.DialogWindows
{
/// <summary>
/// Interaction logic for About.xaml
/// </summary>
public partial class AboutDialog : Window
{
public AboutDialog()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
private void Hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e)
{
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
e.Handled = true;
}
}
}