C#下WinForm编程:登录窗体的设计

编程|设计

我在csdn里搜索了很久,也没有找到符合我要求的login文档,我这次把自己的心得和自己做的成果拿出来和大家分享一下,希望对后来的人能有一些帮助。我初次做,可能代码写的不是很规范,思路也不是很清晰,但是它能达到我要的效果就行了'      希望哪位兄弟帮忙完善一下我的代码。

我在数据库里有一个   users  的表,如下:

ID     UserName           UserPasswd

1        admin                    admin

2        user                        user

3        guest                     guest

我准备这样做,先判断输入的用户名是否和表里的UserName相同,如果相同,再比较相同UserName下的UserPasswd,如果这些都正确了,就可以进入系统了。

全部代码如下(我把我写的部分用黑体):

Form1的代码:

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

namespace login
{
 /// <summary>
 /// Form1 的摘要说明。
 /// </summary>
 public class Form1 : System.Windows.Forms.Form
 {
  private System.Windows.Forms.Label label1;
  private System.Windows.Forms.Label label2;
  private System.Windows.Forms.TextBox txtUser;
  private System.Windows.Forms.TextBox txtPasswd;
  private System.Windows.Forms.Button btnOK;
  private System.Windows.Forms.Button btnCancel;
  /// <summary>
  /// 必需的设计器变量。
  /// </summary>
  private System.ComponentModel.Container components = null;

  public Form1()
  {
   //
   // Windows 窗体设计器支持所必需的
   //
   InitializeComponent();

  
   //
   // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
   //
  }

  /// <summary>
  /// 清理所有正在使用的资源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if (components != null)
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }

  #region Windows 窗体设计器生成的代码
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {
   this.label1 = new System.Windows.Forms.Label();
   this.label2 = new System.Windows.Forms.Label();
   this.txtUser = new System.Windows.Forms.TextBox();
   this.txtPasswd = new System.Windows.Forms.TextBox();
   this.btnOK = new System.Windows.Forms.Button();
   this.btnCancel = new System.Windows.Forms.Button();
   this.SuspendLayout();
   //
   // label1
   //
   this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
   this.label1.Location = new System.Drawing.Point(40, 24);
   this.label1.Name = "label1";
   this.label1.Size = new System.Drawing.Size(64, 23);
   this.label1.TabIndex = 0;
   this.label1.Text = "用户名:";
   //
   // label2
   //
   this.label2.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
   this.label2.Location = new System.Drawing.Point(40, 72);
   this.label2.Name = "label2";
   this.label2.Size = new System.Drawing.Size(56, 23);
   this.label2.TabIndex = 1;
   this.label2.Text = "密码:";
   //
   // txtUser
   //
   this.txtUser.Location = new System.Drawing.Point(152, 24);
   this.txtUser.Name = "txtUser";
   this.txtUser.TabIndex = 2;
   this.txtUser.Text = "";
   //
   // txtPasswd
   //
   this.txtPasswd.Location = new System.Drawing.Point(152, 72);
   this.txtPasswd.Name = "txtPasswd";
   this.txtPasswd.PasswordChar = '*';
   this.txtPasswd.TabIndex = 3;
   this.txtPasswd.Text = "";
   //
   // btnOK
   //
   this.btnOK.Location = new System.Drawing.Point(40, 120);
   this.btnOK.Name = "btnOK";
   this.btnOK.Size = new System.Drawing.Size(72, 23);
   this.btnOK.TabIndex = 4;
   this.btnOK.Text = "OK";
   this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
   //
   // btnCancel
   //
   this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
   this.btnCancel.Location = new System.Drawing.Point(176, 120);
   this.btnCancel.Name = "btnCancel";
   this.btnCancel.TabIndex = 5;
   this.btnCancel.Text = "Cancel";
   this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
   //
   // Form1
   //
   this.AcceptButton = this.btnOK;
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.CancelButton = this.btnCancel;
   this.ClientSize = new System.Drawing.Size(298, 167);
   this.Controls.Add(this.btnCancel);
   this.Controls.Add(this.btnOK);
   this.Controls.Add(this.txtPasswd);
   this.Controls.Add(this.txtUser);
   this.Controls.Add(this.label2);
   this.Controls.Add(this.label1);
   this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
   this.MaximizeBox = false;
   this.MaximumSize = new System.Drawing.Size(304, 192);
   this.MinimizeBox = false;
   this.MinimumSize = new System.Drawing.Size(304, 192);
   this.Name = "Form1";
   this.ShowInTaskbar = false;
   this.Text = "Login";
   this.Load += new System.EventHandler(this.Form1_Load);
   this.ResumeLayout(false);

  }
  #endregion

  /// <summary>
  /// 应用程序的主入口点。
  /// </summary>

  private void btnCancel_Click(object sender, System.EventArgs e)
  {
   Application.Exit();
  }

  private void Form1_Load(object sender, System.EventArgs e)
  {
   this.SetDesktopLocation(280,180);

  
  }

  private void btnOK_Click(object sender, System.EventArgs e)
  {
  
   Form2 theOwner = (Form2)this.Owner;

   if(this.txtUser.Text == "")
   {
    MessageBox.Show("用户名不能为空!","错误");
   }
   else if(this.txtPasswd.Text == "")
   {
    MessageBox.Show("密码不能为空!","错误");
   }
   else
   {
    if(IsUser(this.txtUser.Text))
    {
     if(this.txtPasswd.Text == LoginUser(this.txtUser.Text))
     {
      this.DialogResult = DialogResult.OK;
      theOwner.getUserName = this.txtUser.Text;
     }
     else
     {
      MessageBox.Show("用户名或密码错误!");
     }
    }
    else
    {
     MessageBox.Show("用户名或密码错误!");
    }
   }
  
  
  }
  private string LoginUser(string User)
  {
   SqlConnection conn = new SqlConnection("XXXXXXXX");
   SqlCommand cmd = new SqlCommand();
   cmd.CommandType = CommandType.StoredProcedure;
   cmd.CommandText = "Login";
   cmd.Connection = conn;
   conn.Open();
  
   SqlParameter parName = new SqlParameter("@Name",SqlDbType.VarChar,50);
   parName.Value = User;
   cmd.Parameters.Add(parName);

   cmd.ExecuteNonQuery();
  
   conn.Close();
   SqlDataAdapter da = new SqlDataAdapter();
   da.SelectCommand = cmd;
   DataSet ds = new DataSet();
   da.Fill(ds);

   return ds.Tables[0].Rows[0]["UserPasswd"].ToString();
  }
  private bool IsUser(string User)
  {
   SqlConnection conn = new SqlConnection("XXXXXXXX");
   SqlCommand cmd = new SqlCommand();
   cmd.CommandType = CommandType.StoredProcedure;
   cmd.CommandText = "IsUser";
   cmd.Connection = conn;
   conn.Open();
  
   SqlParameter parName = new SqlParameter("@UserName",SqlDbType.VarChar,50);
   parName.Value = User;
   cmd.Parameters.Add(parName);

   cmd.ExecuteNonQuery();
  
   conn.Close();
   SqlDataAdapter da = new SqlDataAdapter();
   da.SelectCommand = cmd;
   DataSet ds = new DataSet();
   da.Fill(ds);

   int n;
   n = ds.Tables[0].Rows.Count;
   if(n > 0)
    return true;
   else
    return false;
  }
 }
}

在Form2中我设计了一个label ,让它接受从Form1传过来的UserName,这样我们在以后的设计中好判断用户的权限的大小。

Form2的代码:

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

namespace login
{
 /// <summary>
 /// Form2 的摘要说明。
 /// </summary>
 public class Form2 : System.Windows.Forms.Form
 {
  private string UserName;
  private System.Windows.Forms.Label label1;
  /// <summary>
  /// 必需的设计器变量。
  /// </summary>
  private System.ComponentModel.Container components = null;

  public Form2()
  {
   //
   // Windows 窗体设计器支持所必需的
   //
   InitializeComponent();
   Form1 myForm = new Form1();
   myForm.ShowDialog(this);

  

   //
   // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
   //
  }

  /// <summary>
  /// 清理所有正在使用的资源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if(components != null)
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }

  #region Windows 窗体设计器生成的代码
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {
   this.label1 = new System.Windows.Forms.Label();
   this.SuspendLayout();
   //
   // label1
   //
   this.label1.Location = new System.Drawing.Point(128, 72);
   this.label1.Name = "label1";
   this.label1.Size = new System.Drawing.Size(152, 40);
   this.label1.TabIndex = 0;
   //
   // Form2
   //
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.ClientSize = new System.Drawing.Size(520, 357);
   this.Controls.Add(this.label1);
   this.Name = "Form2";
   this.Text = "Form2";
   this.Load += new System.EventHandler(this.Form2_Load);
   this.ResumeLayout(false);

  }
  #endregion
  [STAThread]
  static void Main()
  {
   Application.Run(new Form2());
  }

  private void Form2_Load(object sender, System.EventArgs e)
  {
   this.SetDesktopLocation(200,180);
   this.label1.Text = UserName;
  }
  public string getUserName
  {
   get
   {
    return UserName;
   }
   set
   {
    UserName = value;
   }
  }
 }
}

 

时间: 2024-09-30 02:51:50

C#下WinForm编程:登录窗体的设计的相关文章

C#-WinForm登录窗体实现记住密码的功能(仿QQ实现)

背景 Winform实现登录窗体中记住密码的功能,模仿QQ登录记住密码的实现 如下图所示,其中标题部分因为项目保密的原因,我加了马赛克,请大家见谅. 用户名输入框我们采用下拉列表框ComboBox 密码框我们采用textBox,并设置为密码框 设置textBox输入时不显示明文,需要将useSystemPasswordChar改为true,然后multiline设置为false,然后重新生成一下就可以了,因为textbox为显示为密码字符是当textbox为单行编辑的时候,useSystemPa

.NET Winform登录窗体编程设计及数据库表

.NET Winform登录窗体编程设计及数据库表 : 源代码: 窗体主界面 查找学生(由于重装系统 DB丢失 所以没有数据)

winform-C#WinForm编程中怎么在指定的容器中打开另外的窗体(比如在panel或者其他容器控件)

问题描述 C#WinForm编程中怎么在指定的容器中打开另外的窗体(比如在panel或者其他容器控件) 在编程中做到一个项目想实现一个在点击按钮之后就在本窗体中打开窗体,求大神帮忙! 解决方案 var t = new Form(); t.TopLevel = false; t.Parent = this.panel1; t.Show(); 解决方案二: 在同一界面内隐藏控件点击按钮显示 在控件属性栏通过Visible先隐藏false然后点击按钮事件里 控件(dataGridView1).Visi

Winform登录窗体登录仿asp.net验证成功后进入主界面

一.登录界面验证成功后进入主界面,否则则退出应用程序. 假设登录窗体frmLogin.cs和主界面frmMain.cs在程序的Main入口这样来实现: frmLogin login = new frmLogin(); login.ShowDialog(); if (frmLogin.blCanLogin == true) {    Application.Run(new frmMain()); } 因此在frmLogin窗体中增加一个静态变量 public static bool blCanLo

浅谈如何在C#Winform程序中正确使用登录窗体

看到很多朋友在CSDN中发帖放分求"如何实现登录验证正确后弹出主窗体"的问题.关于这个问题的实现方法,一般很多人都是使用在登录窗体点击"登录"按钮后,通过后台数据验证正确后,把登录窗体隐藏,然后载入主窗体.还有一种做法是以上提问的这些人的一个不太对的一个实现办法(其实是无法实现的),他们的做法是点击"登录"按钮后,调用this.close()方法去把登录窗体关闭,然后实例化主窗体           frmMain dlg=new frmMain

C# WinForm编程中的一点小收获

编程   一:Win Form登录机制的实现    Main窗体为应用程式主窗体,Login为登录窗体.均为SDI窗体.    两种实现方式如下:        1.应用程式入口放在Login窗体,在Login窗体实现登录机制,验证通过则创建Main窗体的实例,并将自身隐藏.        具体实现:        ///Step1:验证登录        ///Step2:通过            this.hide();             oMain.Show();        虽

登录表单设计的新思路

  登录网站已经融入到大多数人的生活当中.也许是登录操作太过频繁,在这个过程中常常出现这样或那样的问题,比如,忘了密码,用户名或注册的邮件地址. 这样的经历不只让我们感到挫败,而且对企业也有不利影响.到底有多糟糕的影响呢?网站User Interface Engineering对主要的网络零售商进行了调查,结果显示,45%的客户在这些系统中进行了重复注册,每天有160,000人进行了找回密码的操作,而一旦他们寻回密码之后,75%的客户再也不会完成之前的支付. 没有登录的访客无法看到网站个性化视图

xp-XP环境下winform绘制表格边框有残影

问题描述 XP环境下winform绘制表格边框有残影 用的是.net3.5,在win7及以上版本运行时,没有问题,但是在XP环境下就会出现下面这个问题--边框绘制有残影ps.在绘制表格的时候,刚开始是能够正常绘制出边框线的,但是整个表格绘制完后,边框线就会立马消失 如果此时将窗体最小化,然后再还原,边框就会被绘制出来,但是绘制的边框偏粗和偏黑.另外,也可以打开一个新的其他程序的窗体,在我的程序窗体前左右拖动,边框也会被绘制出来,且效果与在win7下一致. 求助各位大牛帮忙解决一下.

深入理解并行编程-分割和同步设计(二)

双端队列是一种元素可以从两端插入或删除的数据结构[Knu73].据说实现一种基于锁的允许在双端队列的两端进行并发操作的方法非常困难[Gro07].本节将展示一种分割设计策略,能实现合理且简单的解决方案,请看下面的小节中的三种通用方法. 1.1. 右手锁和左手锁 图1.1:带有左手锁和右手锁的双端队列 右手锁和左手锁是一种看起来很直接的办法,为左手端的入列操作加一个左手锁,为右手端的出列操 作加一个右手锁,如图1.1所示.但是,这种办法的问题是当队列中的元素不足四个时,两个锁的范围会发生重叠.这种