예제 #1
0
        /// <summary>
        /// Helpboxes the specified sender.
        /// </summary>
        /// <param name="sender">The sender.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private static void Helpbox(object sender, EventArgs e)
        {
            var hs = new HelpScreen {
                Text = _sd.AppName + " Help", helpbox = { Text = _sd.HelpText }
            };

            if (ShowingHelp == false)
            {
                ShowingHelp = true;
                hs.Show();
            }
        }
예제 #2
0
        /// <summary>
        /// Helpboxes the specified sender.
        /// </summary>
        /// <param name="sender">The sender.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private static void Helpbox(object sender, EventArgs e)
        {
            var hs = new HelpScreen { Text = _sd.AppName + " Help", helpbox = { Text = _sd.HelpText } };

            if (ShowingHelp == false)
            {
                ShowingHelp = true;
                hs.Show();
            }
        }