-3
你好人我如何打開userControl並在2秒內關閉並顯示另一個窗體? C#的WinForms如何打開usercontrol並關閉2秒
你好人我如何打開userControl並在2秒內關閉並顯示另一個窗體? C#的WinForms如何打開usercontrol並關閉2秒
public void MyFunction()
{
firstForm.ShowDialog();
secondForm.Show();
}
public void firstForm_Load(object sender, EventArgs e)
{
Timer timer = new System.Windows.Forms.Timer() { Interval = 2000 };
timer.Tick += delegate { timer.Stop(); Close(); };
timer.Start();
}
你問如何創建顯示兩秒鐘顯示程序主窗體之前啓動畫面? – 2010-12-06 23:15:32