程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#編寫啟動歡迎界面

C#編寫啟動歡迎界面

編輯:C#入門知識

第一步: 主程序啟動主窗體(這裡表示為 form1)
如下:
    static class Program
    {
        /// <summary>
        /// 應用程序的主入口點。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
第二步: 主窗體( form1) 中的 _Load 事件中啟動歡迎界面 (SplashForm)
如下:
        private void Form1_Load(object sender, EventArgs e)
        {
            //啟動窗體
            SplashForm MySplashForm = new SplashForm ();
            MySplashForm.ShowDialog();
        }
第三步: 歡迎界面中控制界面的顯示方式並使用 timer 控制歡迎界面的消失時間 (實際中往往是讀取系統需要的配置信息後消失)
如下:
        private void Form2_Load(object sender, EventArgs e)
        {
            //設置啟動窗體
            this.FormBorderStyle = FormBorderStyle.None;
            this.BackgroundImage = Image.FromFile("test.jpg");
            this.timer1.Start();
            this.timer1.Interval = 10000;
        }
        private void timer1_Tick(object sender, EventArgs e)
        {
            //...........讀取系統配置

            //關閉啟動窗體
            this.Close();
        }
        private void SplashForm_FormClosed(object sender, FormClosedEventArgs e)
        {
            //關閉定時器
            this.timer1.Stop();
        }

    

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved