Ejemplo n.º 1
0
 /// <summary>
 /// Displays the help menu
 /// </summary>
 /// <param name="sender">not used</param>
 /// <param name="e">not used</param>
 private void MenuItem_Click(object sender, RoutedEventArgs e)
 {
     HelpMain help = new HelpMain();
     help.Owner = this;
     help.ShowDialog();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Opens the help menu
 /// </summary>
 /// <param name="sender">not used</param>
 /// <param name="e">not used</param>
 private void helpButton_Click(object sender, RoutedEventArgs e)
 {
     HelpMain help = new HelpMain();
     help.Owner = this;
     Hide();
     help.ShowDialog();
 }