Winform程序实现系统登入/登出功能
Winform程序实现系统登入/登出功能
Winform程序实现系统登入/登出功能
出于安全性考虑,任何数据库应用程序都需要设计系统登录功能。之前有很多朋友问我要怎样设计好系统登录功能,其实设计是很简单的,之所以这么问,主要原因是学生没有项目开发经验,也不知从何下手,更不知要设计什么样的登录功能。我开发过很系统,几乎设计过各式各样的登录功能,总结经验后发现设计思路大同小异。
下面介绍登录功能设计:
通常在登录窗体上需要设计公司Logo和程序图标,我的演示程序也不例外。另外一个突出点是能够动态显示主程序加载进度。对于中大型系统极为重要,因为加载程序需要较长时间,您还可以设计一些动感的GIF,这样用户不会感到枯燥了。其实友好的界面能够提高用户对系统的认可度和良好的操作感受。
窗体基类:frmBase
frmMain是MDI主窗体
frmLogin是登录窗体
其它相关类
系统视图:
AppEntry是Application Entry的缩写,是实现登入和登出功能的代理类。
AppEntry.MainForm属性是主窗体对象引用。
实现登入功能 :
主窗体内的登出按钮:
Program.cs 很多初学者在程序入口不知如何处理:
开发环境:vs2008+dev express 9.2x
如转载请注明出处,C/S框架网,www.csframework.com
扫一扫加作者微信
Winform程序实现系统登入/登出功能
出于安全性考虑,任何数据库应用程序都需要设计系统登录功能。之前有很多朋友问我要怎样设计好系统登录功能,其实设计是很简单的,之所以这么问,主要原因是学生没有项目开发经验,也不知从何下手,更不知要设计什么样的登录功能。我开发过很系统,几乎设计过各式各样的登录功能,总结经验后发现设计思路大同小异。
下面介绍登录功能设计:
通常在登录窗体上需要设计公司Logo和程序图标,我的演示程序也不例外。另外一个突出点是能够动态显示主程序加载进度。对于中大型系统极为重要,因为加载程序需要较长时间,您还可以设计一些动感的GIF,这样用户不会感到枯燥了。其实友好的界面能够提高用户对系统的认可度和良好的操作感受。
窗体基类:frmBase
frmMain是MDI主窗体
frmLogin是登录窗体
其它相关类
系统视图:
AppEntry是Application Entry的缩写,是实现登入和登出功能的代理类。
AppEntry.MainForm属性是主窗体对象引用。
实现登入功能 :
private void btnLogin_Click(object sender, EventArgs e)
{
try
{
this.SuspendLayout();
this.Cursor = Cursors.WaitCursor;
SetButtonEnable(false);
//调用业务层登录方法
Loginer ret = new bllUser().Login(txtUser.Text,txtPwd.Text);
if (ret != null)
{
Loginer.CurrentUser = ret;//保存当前用户
if (AppEntry.MainForm == null)
{
//登录成功创建主窗体
AppEntry.MainForm = new frmMain();
}
//初始化主窗体(如加载模块,初始化用户界,加载系统参数)
//在初始化同时login窗体会动态显示信息。
AppEntry.MainForm.InitUserInterface(new StatusLable(this.lblLoadingInfo));
this.DialogResult = DialogResult.OK;
this.Close(); //关闭登陆窗体
}
else
{
Msg.Warning("登录失败,请检查用户名和密码!");
}
}
catch (Exception ex)
{
Msg.Warning("登录失败,请检查用户名和密码!");
this.Cursor = Cursors.Default;
}
finally
{
this.Cursor = Cursors.Default;
SetButtonEnable(true);
this.ResumeLayout();
}
}
{
try
{
this.SuspendLayout();
this.Cursor = Cursors.WaitCursor;
SetButtonEnable(false);
//调用业务层登录方法
Loginer ret = new bllUser().Login(txtUser.Text,txtPwd.Text);
if (ret != null)
{
Loginer.CurrentUser = ret;//保存当前用户
if (AppEntry.MainForm == null)
{
//登录成功创建主窗体
AppEntry.MainForm = new frmMain();
}
//初始化主窗体(如加载模块,初始化用户界,加载系统参数)
//在初始化同时login窗体会动态显示信息。
AppEntry.MainForm.InitUserInterface(new StatusLable(this.lblLoadingInfo));
this.DialogResult = DialogResult.OK;
this.Close(); //关闭登陆窗体
}
else
{
Msg.Warning("登录失败,请检查用户名和密码!");
}
}
catch (Exception ex)
{
Msg.Warning("登录失败,请检查用户名和密码!");
this.Cursor = Cursors.Default;
}
finally
{
this.Cursor = Cursors.Default;
SetButtonEnable(true);
this.ResumeLayout();
}
}
主窗体内的登出按钮:
private void btnLogout_Click(object sender, EventArgs e)
{
if (!Msg.AskQuestion("真的要登出吗?")) return;
try
{
if (this.DataChanged())
{
Msg.Warning("系统检测到有数据窗体没有保存,不能登出!");
return;
}
if (!Application.AllowQuit) return;
this.Hide();
AppEntry.MainForm = null;
if (AppEntry.Login() && AppEntry.MainForm != null)
AppEntry.MainForm.Show();
GC.Collect();
}
catch (Exception ex)
{ Msg.ShowException(ex); }
}
{
if (!Msg.AskQuestion("真的要登出吗?")) return;
try
{
if (this.DataChanged())
{
Msg.Warning("系统检测到有数据窗体没有保存,不能登出!");
return;
}
if (!Application.AllowQuit) return;
this.Hide();
AppEntry.MainForm = null;
if (AppEntry.Login() && AppEntry.MainForm != null)
AppEntry.MainForm.Show();
GC.Collect();
}
catch (Exception ex)
{ Msg.ShowException(ex); }
}
Program.cs 很多初学者在程序入口不知如何处理:
static class Program
{
[STAThread]
static void Main()
{
//捕获系统所产生的异常。
Application.ThreadException += new ThreadExceptionEventHandler(Application_ThreadException);
//注册Dev Express皮肤
DevExpress.UserSkins.BonusSkins.Register();
DevExpress.UserSkins.OfficeSkins.Register();
DevExpress.Skins.SkinManager.EnableFormSkins();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//注意:先打开登陆窗体,如登陆成功后再正式运行程序(MDI 主窗体)
if (AppEntry.Login())
{
AppEntry.MainForm.Show();
Application.Run();
}
else
Application.Exit();
}
private static void Application_ThreadException(object sender, ThreadExceptionEventArgs e)
{
Msg.ShowException(e.Exception);
}
}
{
[STAThread]
static void Main()
{
//捕获系统所产生的异常。
Application.ThreadException += new ThreadExceptionEventHandler(Application_ThreadException);
//注册Dev Express皮肤
DevExpress.UserSkins.BonusSkins.Register();
DevExpress.UserSkins.OfficeSkins.Register();
DevExpress.Skins.SkinManager.EnableFormSkins();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
//注意:先打开登陆窗体,如登陆成功后再正式运行程序(MDI 主窗体)
if (AppEntry.Login())
{
AppEntry.MainForm.Show();
Application.Run();
}
else
Application.Exit();
}
private static void Application_ThreadException(object sender, ThreadExceptionEventArgs e)
{
Msg.ShowException(e.Exception);
}
}
开发环境:vs2008+dev express 9.2x
如转载请注明出处,C/S框架网,www.csframework.com
扫一扫加作者微信
版权声明:本文为开发框架文库发布内容,转载请附上原文出处连接
NewDoc C/S框架网