Exemple #1
0
        private void creditsForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            var firstPage = new FirstPage();

            firstPage.Show();
            Hide();
        }
Exemple #2
0
        private void exitBtn_Click(object sender, EventArgs e)
        {
            var firstPage = new FirstPage();

            firstPage.Show();
            Hide();
        }
Exemple #3
0
 static void Main()
 {
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     var startingPage = new FirstPage();
     Application.Run(startingPage);
 }
Exemple #4
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            var startingPage = new FirstPage();

            Application.Run(startingPage);
        }
 private void creditsForm_FormClosing(object sender, FormClosingEventArgs e)
 {
     var firstPage = new FirstPage();
     firstPage.Show();
     Hide(); 
 }
 private void exitBtn_Click(object sender, EventArgs e)
 {
     var firstPage = new FirstPage();
     firstPage.Show();
     Hide(); 
 }