示例#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();
        }