コード例 #1
0
ファイル: frmSplashScreen.cs プロジェクト: votrongdao/PEIMS
 private void timer1_Tick(object sender, EventArgs e)
 {
     progressBar1.Increment(1);
     if (progressBar1.Value == 100)
     {
         timer1.Stop();
         frmMainLogin f = new frmMainLogin();
         f.Show();
         this.Hide();
     }
 }
コード例 #2
0
ファイル: frmSplashScreen.cs プロジェクト: duhowise/PEIMS
 private void timer1_Tick(object sender, EventArgs e)
 {
     progressBar1.Increment(1);
     if (progressBar1.Value == 100)
     {
         timer1.Stop();
         frmMainLogin f = new frmMainLogin();
         f.Show();
         this.Hide();
     }
 }