/// <summary>
 /// Handles the Click event of the About control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="System.Windows.RoutedEventArgs"/> instance containing the event data.</param>
 private void About_Click(object sender, RoutedEventArgs e)
 {
     About about = new About();
     about.ShowDialog();
 }
示例#2
0
 /// <summary>
 /// Handles the Click event of the About control.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="System.Windows.RoutedEventArgs"/> instance containing the event data.</param>
 private void About_Click(object sender, RoutedEventArgs e)
 {
     var ab = new About();
     ab.Owner = this;
     ab.ShowDialog();
 }