using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; 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; namespace mdfinder { /// /// Interaction logic for AboutWindow.xaml /// public partial class AboutWindow : Window { /// Default constructor. public AboutWindow() { InitializeComponent(); this.txtVersion.Text = Assembly.GetExecutingAssembly().GetName().Version.ToString(); } /// Event handler. Called by Hyperlink for request navigate events. /// Source of the event. /// Request navigate event information. private void Hyperlink_RequestNavigate(object sender, System.Windows.Navigation.RequestNavigateEventArgs e) { Process.Start(e.Uri.AbsoluteUri); e.Handled = true; } /// Event handler. Called by btnOK for click events. /// Source of the event. /// Routed event information. private void btnOK_Click(object sender, RoutedEventArgs e) { this.Close(); } } }