我正在使用来自Here的启动画面。我喜欢它的简单。但它的问题是,在我点击它之前,闪屏不会消失。在 IDE 中运行时,它工作正常。有任何想法吗?我会在此处附上代码,但由于某种原因它没有正确插入。
private System.Windows.Forms.Timer timer1;
//private Splash sp=null;
public Form1()
{
InitializeComponent();
Thread th = new Thread(new ThreadStart(DoSplash));
//th.ApartmentState = ApartmentState.STA;
//th.IsBackground=true;
th.Start();
Thread.Sleep(3000);
th.Abort();
Thread.Sleep(1000);
}
private void DoSplash()
{
Splash sp = new Splash();
sp.ShowDialog();
}
private void timer1_Tick(object sender, System.EventArgs e)
{
// sp.Close();
}