Пример #1
0
        /// <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
        }
Пример #2
0
        /// <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();
        }