1. 程式人生 > >設計軟件啟動界面

設計軟件啟動界面

brush send 必須 rop 窗體 tro wid style屬性 實現

實現效果:

  技術分享圖片

知識運用:

   Timer組件的Start方法  窗體的FormBorderStyle屬性

  技術分享圖片

  補充:屬性為FixedToolWindow枚舉值的窗體通常不顯示在任務欄中

  但是必須確保ShowInTaskbar屬性設置為false 因為其默認值為true

實現代碼:

        private void Form1_Load(object sender, EventArgs e)
        {
            this.FormBorderStyle = FormBorderStyle.None;
            this.BackgroundImage = Properties.Resources.StartImg;
            timer1.Start();
            timer1.Interval = 3000;
        }

設計軟件啟動界面