C#Winform界面启动时初始化效果,多界面启动
说起来这种效果其实非常的常见,很多专业的软件都在使用,下面我就来实现一个大家提提建议吧。
先来看看启动的效果
刚开始 正在验证身份信息
接下来是身份验证成功提示
当然你可以加N多步,都可以自己定义,这个一会儿一起看代码吧,下面是成功之后
我只是简单的实现一下效果,所以启动后的界面是一个空的窗体。什么也没有这样方便 大家加代码
下面一起来看下实现方法吧。
程序结构如下
通过上图片我们可以看到有两个窗体
一张图片
图片就是上面的图片
下面先来看看Program这个类吧
代码如下
[C#] 纯文本查看 复制代码 /// <summary>
/// 编 码 人:苏飞
/// 官方网址:[url=http://www.sufeinet.com]http://www.sufeinet.com[/url]
/// </summary>
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Threading;
namespace Startup
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
MyApplicationContent appContent = new MyApplicationContent(new frmMain(), new frmstartup());
Application.Run(appContent);
}
//模拟耗时操作,这里假调程序需要访问网络来实现登录验证
//这是一个耗时操作,我们需要在执行的过程中,向用户实时显示一些信息
//那么,多线程是唯一的解决方案,在主线程执行这些,界面会死掉的
public static void InitApp(Object parm)
{
frmstartup startup = parm as frmstartup;
startup.Invoke(new UiThreadProc(startup.PrintMsg), "正在初始化...");
Thread.Sleep(100);
startup.Invoke(new UiThreadProc(startup.PrintMsg), "正在验证用户身份信息...");
Thread.Sleep(2000);
startup.Invoke(new UiThreadProc(startup.PrintMsg), "用户身份验证成功。");
Thread.Sleep(500);
startup.Invoke(new UiThreadProc(startup.PrintMsg), "正在登录...");
Thread.Sleep(2000);
startup.Invoke(new UiThreadProc(startup.PrintMsg), "登录成功,欢迎使用!");
//这里可以根据执行的结果判断,如果登录失败就退出程序,否则显示主窗体
if (true)
{
startup.Invoke(new UiThreadProc(startup.CloseForm), false);
}
else
{
startup.Invoke(new UiThreadProc(startup.CloseForm), true);
}
}
}
public delegate void UiThreadProc(Object o);
//WinForm里,默认第一个创建的窗体是主窗体,所以需要用应用程序域来管理
public class MyApplicationContent : ApplicationContext
{
private Form realMainForm;
public MyApplicationContent(Form mainForm, Form flashForm)
: base(mainForm)
{
this.realMainForm = mainForm;
this.MainForm = flashForm;
}
protected override void OnMainFormClosed(object sender, EventArgs e)
{
if (sender is frmstartup)
{
frmstartup frm = sender as frmstartup;
if (!frm.Exit)
{
this.MainForm = realMainForm;
realMainForm.Show();
}
else
{
base.OnMainFormClosed(sender, e);
}
}
else
{
base.OnMainFormClosed(sender, e);
}
}
}
}
下面是frmstartup 的代码
[C#] 纯文本查看 复制代码 /// <summary>
/// 编 码 人:苏飞
/// 官方网址:[url=http://www.sufeinet.com]http://www.sufeinet.com[/url]
/// </summary>
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Threading;
namespace Startup
{
public partial class frmstartup : Form
{
private bool _Exit;
public bool Exit
{
get { return _Exit; }
}
public frmstartup()
{
InitializeComponent();
}
private void frmstartup_Load(object sender, EventArgs e)
{
ThreadPool.QueueUserWorkItem(new WaitCallback(Program.InitApp), this);
}
//显示文字信息
public void PrintMsg(Object msg)
{
lblMsg.Text = msg.ToString();
}
//关闭启动窗体,如果需要中止程序,传参数false
public void CloseForm(Object o)
{
this._Exit = Convert.ToBoolean(o);
this.Close();
}
}
}
好了就这些吧,如果大家还有什么看不明白的地方可以下载源代码自己研究研究
注意哦只有本站的注册会员才能下载的。
如果你要下载就先注册账户吧。
源码下载
初始化效果与多界面启动.zip
(190.64 KB, 下载次数: 4034)
|