/// <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(); }
/// <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(); }