using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; using System.Diagnostics; namespace Org.TechA.Wpf.UserControls { /// /// Interaction logic for AboutDialog.xaml /// public partial class AboutDialog : Window { public AboutDialog() { InitializeComponent(); } private void Hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e) { string navigateUri = e.Uri.ToString(); Process.Start(new ProcessStartInfo(navigateUri)); e.Handled = true; } } }