/// <summary>
 /// Event which opens the About window
 /// </summary>
 private void mnuAbout_Click(object sender, EventArgs e)
 {
     AboutDTS aboutForm = new AboutDTS();
     aboutForm.ShowDialog(this);
 }
        /// <summary>
        /// Display the About dialog box.
        /// </summary>
        /// <param name="sender">Object which fires the method</param>
        /// <param name="e">Event arguments of the callback</param>
        private void AboutMenuItem_Click(object sender, System.EventArgs e)
        {
            AboutDTS aboutForm = new AboutDTS();

            aboutForm.ShowDialog(this);
        }
Esempio n. 3
0
        /// <summary>
        /// Event which opens the About window
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void mnuAbout_Click(object sender, EventArgs e)
        {
            AboutDTS aboutForm = new AboutDTS();

            aboutForm.ShowDialog(this);
        }
 /// <summary>
 /// Display the About dialog box.
 /// </summary>
 /// <param name="sender">Object which fires the method</param>
 /// <param name="e">Event arguments of the callback</param>
 private void AboutMenuItem_Click(object sender, System.EventArgs e)
 {
     AboutDTS aboutForm = new AboutDTS();
     aboutForm.ShowDialog(this);
 }