WinForm——记住密码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.IO;
namespace LoginAdmin
{
class RWini
{
private string Path;
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section,string key,string val,string path);
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section,string key, string def, StringBuilder retVal, int size, string Path);
/// <summary>
/// 构造函数
/// </summary>
/// <param name="INIPath"></param>
public RWini(string INIPath)
{
Path=INIPath;
}
/// <summary>
/// 写入INI文件
/// </summary>
/// <param name="Section"></param>
/// <param name="Key"></param>
/// <param name="value"></param>
public void WriteInivalue(string Section, string Key, string value)
{
File.SetAttributes(this.Path, FileAttributes.Normal);
WritePrivateProfileString(Section, Key, value, this.Path);
File.SetAttributes(this.Path, FileAttributes.ReadOnly);
}
/// <summary>
/// 读取INI文件
/// </summary>
/// <param name="Section"></param>
/// <param name="Key"></param>
/// <returns></returns>
public string ReadInivalue(string Section, string Key)
{
StringBuilder temp = new StringBuilder(1024);
int i = GetPrivateProfileString(Section, Key, "读取错误", temp, 1024, this.Path);
return temp.ToString();
}
}
}
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using Microsoft.Win32;
namespace LoginAdmin
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
ReadINI();
Roles();
MessageBox.Show(textBox1.Text);
}
private void Roles()
{
//文件操作读取-------StreamReader
string filepath = "..\\..\\Roles.txt";
StreamReader sr = new StreamReader(filepath, Encoding.Unicode);
//string content = sr.ReadToEnd();//返回string
string content = sr.ReadLine();
sr.Close();
string[] arry = content.Split('\t');
for (int i = 0; i < arry.Length; i++)
{
comboBox1.Items.Add(arry[i]);
}
}
/// <summary>
/// 写入INI
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void button1_Click(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
string name = textBox1.Text;
string password = textBox2.Text;
string path = @"..\\..\\set.ini";
RWini ini = new RWini(path);
ini.WriteInivalue("mysystem", "username", name);
}
}
/// <summary>
/// 读取ini
/// </summary>
private void ReadINI()
{
string path = Path.GetFullPath(@"..\\..\\set.ini");
RWini ini = new RWini(path);
textBox1.Text = ini.ReadInivalue("mysystem", "username");
}
}
}
方法二:注册表
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using Microsoft.Win32;
namespace LoginAdmin
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
Roles();
HasRemember();
}
private void button1_Click(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
string name = textBox1.Text;
string password = textBox2.Text;
Remember(true, name, password);
}
}
/// <summary>
/// 根据传入值记住密码
/// </summary>
/// <param name="remember">是否记录</param>
/// <param name="userName">用户名</param>
/// <param name="password">密码</param>
private void Remember(bool remember,string userName,string password)
{
try{
RegistryKey key=Registry.LocalMachine.OpenSubKey("SOFTWARE",true);
key=key.CreateSubKey("CheckManage",RegistryKeyPermissionCheck.Default);
if(remember)
{
key.SetValue("username",userName);
key.SetValue("password",password);
}
else
{
if(key.GetValue("username")!=null) key.DeleteValue("username");
if(key.GetValue("password")!=null) key.DeleteValue("password");
}
}
catch
{
}
}
/// <summary>
/// 判断是否记住密码
/// </summary>
/// <returns></returns>
private bool HasRemember()
{
try
{
RegistryKey key = Registry.LocalMachine.OpenSubKey("SOFTWARE\\CheckManage", true);
object objU = key.GetValue("username");
if (objU != null)
{
this.textBox1.Text = objU.ToString();
}
object objP = key.GetValue("password");
if (objP != null) this.textBox2.Text = objP.ToString();
return objU != null && objP != null;
}
catch
{
return false;
}
}
private void Roles()
{
//文件操作读取-------StreamReader
string filepath = "..\\..\\Roles.txt";
StreamReader sr = new StreamReader(filepath, Encoding.Unicode);
//string content = sr.ReadToEnd();//返回string
string content = sr.ReadLine();
sr.Close();
string[] arry = content.Split('\t');
for (int i = 0; i < arry.Length; i++)
{
comboBox1.Items.Add(arry[i]);
}
}
}
}
总结:
方法一:写入数据库
方法二:写入文件——txt、xml、ini
方法三:注册表
WinForm——记住密码的更多相关文章
- winform 记住密码功能
//登录 private void btn_Login_Click(object sender, EventArgs e) { //记住密码 ...
- C# winform 记住密码实现代码
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; usin ...
- WinForm应用程序的开机自启、记住密码,自动登录的实现
一.思路: 1.开机自启,自然是需要用到注册表,我们需要把程序添加到电脑的注册表中去 2.记住密码,自动登录,开机自启,在页面的呈现我们都使用复选框按钮来呈现 3.数据持久化,不能是数据库,可以是sq ...
- java实现记住密码功能(利用cookie)
<br> <input type="text" id="userName" name="userName" value=& ...
- 记住密码超简单实现(C#)
实现效果如下 实现过程 [Serializable] class User { //记住密码 private string loginID; public string LoginID { get { ...
- cookie实现记住密码
[声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/4 ...
- 通过sharedpreferences实现记住密码功能
通过sharedpreferences实现记住密码功能
- MiniTwitter记住密码等功能实现
一.SharedPreferences的用法:(相关实现功能的只是了解) 由于SharedPreferences是一个接口,而且在这个接口里没有提供写入数据和读取数据的能力.但它是通过其Editor接 ...
- jquery.cookie.js 操作cookie实现记住密码功能的实现代码
jquery.cookie.js操作cookie实现记住密码功能,很简单很强大,喜欢的朋友可以参考下. 复制代码代码如下: //初始化页面时验证是否记住了密码 $(document).ready( ...
随机推荐
- c# 封装的文件夹操作类之复制文件夹
c# 封装的文件夹操作类之复制文件夹 一.复制文件夹原理: 1.递归遍历文件夹 2.复制文件 二.FolderHelper.cs /// <summary> /// 文件夹操作类 /// ...
- OPENCV形态学算法-2
一.漫水填充算法 该算法通过一个指定的种子点,来分析整张图片上的像素,并设置像素差异阈值,在阈值类的点,最后变成相同的颜色.该方法通过上下限和连通方式来达到不同的连通效果. 该方法常用与标记和分离图像 ...
- Spring自学教程-注解的使用(三)
一.java中的注解 定义注解 下面是一个定义注解的实例. @Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documente ...
- Mac下node.js卸载方法收集
brew的安装方式 直接通过一条命令 brew uninstall nodejs 官网下载pkg安装包的 通过这条命令 sudo rm -rf /usr/local/{bin/{node,npm},l ...
- js去除字符串空格
str.replace(/\s+/g,""); str.replace(/\s|\xA0/g,""); empName=empName.replace(/^\s ...
- (简单) HDU 3397 Sequence operation,线段树+区间合并。
Problem Description lxhgww got a sequence contains n characters which are all '0's or '1's. We have ...
- Mysql中Insert into xxx on duplicate key update问题
要点:Insert into xxx on duplicate key update可以在唯一索引重复的情况下,进行更新操作. (1) 插入里边的字段应该只有一个 唯一索引: ...
- 求两个字符串最大的子字符串C#
此代码由Java改写而来,字符串支持中文格式的. string str1 = "中国ab-15"; string str2 = "中国ab-23"; byte[ ...
- js 设置导航固定
<div id="nav"> .... </div> function Add_Data() { var top = $("#header-nav ...
- SVN打基线
分成trunk.tags.branches的话,那直接从trunk copy 到tags下面就可以或者按照你自己的目录,只要规定好就行 选择要打基线的项目的根目录,右击鼠标,在弹出的菜单中选择“分支/ ...