我有这个正在启动的屏幕,基本上就像一个飞溅,但它不是。我在上面放了一个计时器。几秒钟后,窗口必须消失,然后必须显示登录。我已经展示了新表格,但它是在循环中。它一次又一次地打开新表格!这是我的代码。我在哪里做错了?
定时器
int count;
count = 0;
public Windowsplash()
{
System.Windows.Threading.DispatcherTimer dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Interval = new TimeSpan(0,0,0,0,2500);
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dispatcherTimer.Start();
}
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
System.Windows.Threading.DispatcherTimer dispatcherTimer = sender as System.Windows.Threading.DispatcherTimer;
dispatcherTimer.Stop();
MainWindow _new = new MainWindow();
_new.Show();
this.Close();
}
我想停止计时器,这样新窗口就可以一直停止打开!谢谢!
PS:我把它编辑成我现在拥有的