Interaction logic for AboutDlg.xaml The dialog shows basic information about the application, as well as an expandable credits pane. Two buttons are provided: A help button that shows the help dialog, and an Ok button to close the dialog.
Наследование: System.Windows.Window
Пример #1
0
        // AboutBox
        // Shows About dialog box with software info, contacts and credits
        private void AboutBox_Click(object sender, RoutedEventArgs e)
        {
            Logger.record("[AboutBox_Click]: About box invoked", "SMWidget", "info");
            AboutDlg about = new AboutDlg();

            about.Owner = this;
            about.ShowDialog();
        }
Пример #2
0
 // AboutBox
 // Shows About dialog box with software info, contacts and credits
 private void AboutBox_Click(object sender, RoutedEventArgs e)
 {
     Logger.record("[AboutBox_Click]: About box invoked", "SMWidget", "info");
     AboutDlg about = new AboutDlg();
     about.Owner = this;
     about.ShowDialog();
 }