Esempio n. 1
0
        private void creditsForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            var firstPage = new FirstPage();

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

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

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