Logica di interazione per AboutDialog.xaml
Inheritance: System.Windows.Window
Example #1
0
 /// <summary>
 /// Handler for about menu item. This method shows the dialog.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void about_item_Click(object sender, RoutedEventArgs e)
 {
     AboutDialog dlg = new AboutDialog();
     dlg.Owner = this;
     dlg.ShowDialog();
 }