资源简介
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.xm
文件 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.xm
文件 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.xm
文件 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.xm
文件 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.xm
文件 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个文件信息
- 上一篇:C#常用类型转换扩展
- 下一篇:开发框架之单据窗体生成(主从表流水单号)
相关资源
- WinForm GeckoFx33 Demo JS与C#互交 窗口浏览
- c#winform中完美代替WebBrowser最新的控件
- gmap离线地图执行文件
- C# WINFORM框架源碼
- C# WinForm实践开发教程清晰版
- 一种开源业务系统框架winform源码
- 毕业设计,基于winform的酒店管理系统
- DevExpress WinForm中文文档
- DevexpressWinform中文文档
- Devexpress Winform中文文档纯中文文档N
- ASP.Net如何制作注册页和登陆页视频
- Iocomp.Net+WinForms+V4+SP2完全破解版
- Devexpress 中文说明文档winform
- C# WinForm实践开发教程 (钱哨) 带书
- 《CS框架权限管理功能设计》 winform
- [C#]SignalR实现扫码登录(B/SC/S)源码
- C#winformKTV点歌系统
- WinForm开发经典图标素材 总共有3800+
- Asp.net C#生成pdf文件
- 在ASP.NET MVC中使用Redis 的Demo:通过R
- IOComp.Net WinForms UltraPack 5.0SP1
-
基于winform的xm
l菜单编辑器c#源码) - 数据库课设:KTV点歌系统C# WinForm+Sq
- C# 将office,PDF文件转换为SWF文件
- C#WinForm人事管理系统开发实录
- C#学生选课系统包括源程序及数据库文
- C#开发MC3200/MC32N0设备的开发文档及需
- 198个经典C#WinForm(超赞)
- WinForm窗体程序中使用CefSharp获取加载
- 198个经典C#WinForm 超赞的完整版
评论
共有 条评论