我已经使用 c# Windows 表单创建了一个登录表单,并且我通过提交登录表单将用户名或密码保存到文本文件中。
但我想要的是:- 当我点击我的文本框时,它应该显示我保存的所有保存的用户名或密码(用户名或密码),这样我就不必再次插入相同的用户名或密码。
我想要的是这样的: http: //i49.tinypic.com/rkuats.jpg和http://i46.tinypic.com/21edys1.jpg
这是我的代码:
private void button1_Click(object sender, EventArgs e)
{
try
{
FileStream fs = new FileStream("data.txt", FileMode.Append,
FileAccess.Write);
StreamWriter sw = new StreamWriter(fs);
sw.Write("Email ID: ");
sw.WriteLine(textBox1.Text);
sw.Write("Password: ");
sw.Write(textBox2.Text);
sw.WriteLine();
sw.WriteLine();
sw.Flush();
sw.Close();
fs.Close();
}
catch (Exception)
{
MessageBox.Show("Error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.Close();
}
MessageBox.Show("Login Complited", "Done", MessageBoxButtons.OK, MessageBoxIcon.Information);
textBox1.Clear();
textBox2.Clear();
}