Exemplo n.º 1
0
        /// <summary>
        /// this will cause the current form to close
        /// and to open the old one
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void backToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Hide();
            uxMainScreen main = new uxMainScreen();

            main.ShowDialog();
        }
Exemplo n.º 2
0
 /// <summary>
 /// will return to the main menu
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void uxBack_Click(object sender, EventArgs e)
 {
     this.Hide();
     mx.ShowDialog();
 }