Exemple #1
0
        /// <summary>
        /// Display the About box
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="RoutedEventArgs"/> instance containing the event data.</param>
        private void miAbout_Click(object sender, RoutedEventArgs e)
        {
            AboutScreen about = new AboutScreen();

            about.ShowDialog();
        }
Exemple #2
0
 /// <summary>
 /// Display the About box
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="RoutedEventArgs"/> instance containing the event data.</param>
 private void miAbout_Click(object sender, RoutedEventArgs e)
 {
     AboutScreen about = new AboutScreen();
     about.ShowDialog();
 }