摘要:
显示一个WinForms闪屏(Splash Screen)我的应用程序需要一定的时间来启动。我想在应用程序继续加载时显示一个闪屏(就像Visual Studio .NET和Office应用程序那样)。工具箱中没有这样的控件。我该如何实现呢? A:本专栏所附带的代码中包含了一个 SplashScreen类: view plaincopy to clipboardprint? public cla... 阅读全文
摘要:
闪屏实际上是一个BorderStyle为none的窗口方法一:添加闪屏窗口并设置相应的样式属性(注意把icon显示属性去掉),添加timer控件和如下的事件函数 private void frmSplash_Load(object sender, EventArgs e) { this.timer1.Start(); this.timer1.Interval = 3000; } private void timer1_Tick(object sender, EventArgs e) { this.Close(); } private void frmSplash_FormClosing(obj 阅读全文