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

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

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

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