mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-22 09:01:43 +03:00
28 lines
689 B
C#
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;
|
|
}
|
|
}
|
|
}
|