/// <summary> /// Handles the Click event of the Help control. Open a dialog if no other dialog is still opened. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param> void Help_Click(object sender, EventArgs e) { #if PORTABLE FormHelp help = new FormHelp(); help.Show(); #else OpenOptionWindow("xamlesheep://help"); #endif }
/// <summary> /// Handles the Click event of the Help control. Open a dialog if no other dialog is still opened. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param> void Help_Click(object sender, EventArgs e) { FormHelp help = new FormHelp(); help.Show(); }