1. 登录界面的效果图
捕获.PNG 捕获2.PNG 捕获3.PNG 捕获4.PNG 捕获5.PNG2. 登录界面实现的功能描述
该界面主要是为指定的用户可以更快更安全的进入商超管理系统。用户首先选择用户类型(收银员/库管员),然后输入自己的用户名和密码点击登录就可以登录。不同的用户类型的用户所访问到的页面也是不同的。不想登陆,可直接退出。
3. 登录界面各控件的参数设置
控件A
属性 | 值 |
---|---|
用户名 | 收银员:晓晓,库管员:哒哒 |
控件B
属性 | 值 |
---|---|
密码 | 收银员:123456,库管员:abc123 |
4. 重要方法描述
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;
namespace zuoye0
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void label2_Click(object sender, EventArgs e)
{
}
// 窗口加载时,设置默认角色为“收银员”
private void LoginForm_Load(object sender, EventArgs e)
{
this.comboBox1.SelectedIndex = 0;
}
// 点击“登录”按钮则登录系统
private void button1_Click(object sender, EventArgs e)
{
if (this.comboBox1.SelectedItem.ToString() == "收银员")
{
if (this.textBox1.Text == "晓晓" && this.textBox2.Text == "123456")
{
MessageBox.Show("收银员登录成功");
}
else
{
MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
if (this.comboBox1.SelectedItem.ToString() == "库管员")
{
if (this.textBox1.Text == "哒哒" && this.textBox2.Text == "abc123")
{
MessageBox.Show("库管员登录成功");
}
else
{
MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
private void label3_Click(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
this.comboBox1.SelectedIndex = 0;
MessageBox.Show("永辉,欢迎您!");
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
//this.comboBox1.SelectedIndex = 0;//默认时加这一句
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Enter)
{
SendKeys.Send("{tab}");
}
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
}
// 点击“退出”按钮则退出应用程序
private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void textBox1_Enter(object sender, EventArgs e)
{
((TextBox)sender).SelectAll();
}
// 在用户名输入框中按“回车”,光标跳转到密码输入框
private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Enter)
{
SendKeys.Send("{tab}");
}
}
// 在密码输入框中按“回车”,则直接登录
private void textBox2_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Enter)
{
SendKeys.Send("{tab}");
}
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
// Tab进入用户名输入框时,自动全选用户名
((TextBox)sender).SelectAll();
}
private void textBox1_TextChanged_1(object sender, EventArgs e)
{
}
private void textBox1_KeyPress_1(object sender, KeyPressEventArgs e)
{
// 在用户名输入框中按“回车”,光标跳转到密码输入框
if (e.KeyChar == (char)Keys.Enter)
{
SendKeys.Send("{tab}");
}
}
// Tab进入密码输入框时,自动全选密码
private void tb_Password_Enter(object sender, EventArgs e)
{
((TextBox)sender).SelectAll();
}
private void textBox2_TextChanged_1(object sender, EventArgs e)
{
}
private void textBox2_KeyPress_1(object sender, KeyPressEventArgs e)
{
// 在密码输入框中按“回车”,则直接登录
if (e.KeyChar == (char)Keys.Enter)
{
this.button1_Click(sender, e);
}
}
}
}
5. 想一想,还有哪些尚需完善的功能
无法修改密码
网友评论