• 大小: 7.97M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: winform  登陆  文件  密码  ORM  

资源简介

Winform实现登录窗体中记住密码的功能,模仿QQ登录记住密码的实现 

用户名输入框我们采用下拉列表框ComboBox 
密码框我们采用textBox,并设置为密码框

设置textBox输入时不显示明文,需要将useSystemPasswordChar改为true,然后multiline设置为false,然后重新生成一下就可以了,因为textbox为显示为密码字符是当textbox为单行编辑的时候,useSystemPasswordchar的设置才会生效,然后我们还可以通过passwordChar设置textbox中以哪种形式来显示你输入的字符,默认是”*”。

记住密码功能的常见实现方法有三种: 
方法一:写入本地数据库 
方法二:写入文件——txt、xml、ini 
方法三:注册表 


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Runtime.Serialization.Formatters.Binary;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Winform登陆记住密码
{
    public partial class frm_Login : Form
    {
        public frm_Login()
        {
            InitializeComponent();
        }
        Dictionary users = new Dictionary();
        private void simpleButton1_Click(object sender EventArgs e)
        {
            string username = this.cbo_UserName .Text.Trim();
            string password = this.txt_Password.Text.Trim();

            User user = new User();
            FileStr

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-08-15 21:38  Winform登陆记住密码\
     目录           0  2017-08-15 21:38  Winform登陆记住密码\.vs\
     目录           0  2017-08-15 21:38  Winform登陆记住密码\.vs\Winform登陆记住密码\
     目录           0  2017-08-15 21:38  Winform登陆记住密码\.vs\Winform登陆记住密码\v14\
     文件       56320  2017-08-19 16:06  Winform登陆记住密码\.vs\Winform登陆记住密码\v14\.suo
     目录           0  2017-08-19 16:04  Winform登陆记住密码\Winform登陆记住密码\
     文件        1042  2017-08-15 21:38  Winform登陆记住密码\Winform登陆记住密码.sln
     文件         189  2017-08-19 16:00  Winform登陆记住密码\Winform登陆记住密码\App.config
     目录           0  2017-08-15 21:44  Winform登陆记住密码\Winform登陆记住密码\bin\
     目录           0  2017-08-19 15:44  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\
     文件        1699  2017-08-19 16:05  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\data.bin
     目录           0  2017-08-19 15:25  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\de\
     文件     3489272  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.Data.v14.1.dll
     文件     1061142  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.Data.v14.1.xml
     文件     2534392  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.Printing.v14.1.Core.dll
     文件      901244  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.Printing.v14.1.Core.xml
     文件       74744  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.Sparkline.v14.1.Core.dll
     文件       21144  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.Sparkline.v14.1.Core.xml
     文件     5187576  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.Utils.v14.1.dll
     文件      558505  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.Utils.v14.1.xml
     文件     3495928  2017-06-28 11:02  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.XtraEditors.v14.1.dll
     文件     1562508  2017-06-28 11:02  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\DevExpress.XtraEditors.v14.1.xml
     文件      171000  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\de\DevExpress.Data.v14.1.resources.dll
     文件       12792  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\de\DevExpress.Printing.v14.1.Core.resources.dll
     文件       11768  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\de\DevExpress.Sparkline.v14.1.Core.resources.dll
     文件       25592  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\de\DevExpress.Utils.v14.1.resources.dll
     文件       61944  2017-06-28 11:02  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\de\DevExpress.XtraEditors.v14.1.resources.dll
     目录           0  2017-08-19 15:25  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\es\
     文件      174584  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\es\DevExpress.Data.v14.1.resources.dll
     文件       13304  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\es\DevExpress.Printing.v14.1.Core.resources.dll
     文件       12280  2017-06-28 11:01  Winform登陆记住密码\Winform登陆记住密码\bin\Debug\es\DevExpress.Sparkline.v14.1.Core.resources.dll
............此处省略59个文件信息

评论

共有 条评论