摘要: using System; using System.IO; using System.Diagnostics; namespace Adjust { /// /// Matrix 的摘要说明。 /// 实现矩阵的基本运算 /// public class Matrix { //构造方阵 ... 阅读全文
posted @ 2010-11-16 01:07 lcxu2 阅读(12208) 评论(1) 推荐(0) 编辑
摘要: 显示一个WinForms闪屏(Splash Screen)我的应用程序需要一定的时间来启动。我想在应用程序继续加载时显示一个闪屏(就像Visual Studio .NET和Office应用程序那样)。工具箱中没有这样的控件。我该如何实现呢? A:本专栏所附带的代码中包含了一个 SplashScreen类: view plaincopy to clipboardprint? public cla... 阅读全文
posted @ 2010-11-16 01:05 lcxu2 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 闪屏实际上是一个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 阅读全文
posted @ 2010-11-16 01:03 lcxu2 阅读(269) 评论(0) 推荐(0) 编辑