上一页 1 ··· 5 6 7 8 9
摘要: 显示一个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) 编辑
摘要: C#实现窗体中所有控件跟随窗体尺寸的自由变换 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Collections;namespace WindowsApplication3 { public partial class Form1 : Form { /****************** 阅读全文
posted @ 2010-10-28 18:45 lcxu2 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 一个不错的Matlab的gui界面设计实例 (2008-10-03 15:47:30)matlab gui 界面 校园 分类:Matlab实例%非常漂亮的日历,网上下载的,忘了出处了function CalendarTable;% calendar 日历% Example:% CalendarTable;S=datestr(now);[y,m,d]=datevec(S);% d is day% m is month% y is yearDD={'Sun','Mon','Tue','Wed','Thu','F 阅读全文
posted @ 2008-10-03 23:47 lcxu2 阅读(6619) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9