1. 登录界面的效果图
2. 登录界面实现的功能描述
不同身份人员登陆,显示不同功能和信息
3. 登录界面各控件的参数设置
控件label1
控件label2
控件label3
控件A
属性 |
值 |
Text |
登陆界面 |
MaximizeBox |
False |
MinimizeBox |
False |
控件Linklabel1
控件conboBox1
属性 |
值 |
DropDownStyle |
DropDownList |
DropDownStyle |
comboBox1_SelectedIndexChanged |
控件textBox2
属性 |
值 |
Click |
textBox2_Click |
KeyPress |
textBox2_KeyPress |
TextChanged |
textBox2_TextChanged |
控件textBox3
属性 |
值 |
Click |
textBox3_Click |
KeyPress |
textBox3_KeyPress |
TextChanged |
textBox3_TextChanged |
控件Button1
属性 |
值 |
Text |
登陆 |
UseVisualStyleBackColor |
False |
Click |
button1_Click |
控件Button2
属性 |
值 |
Text |
取消 |
UseVisualStyleBackColor |
False |
Click |
button2_Click |
4. 重要方法描述
1.登录窗口边框固定,且不能最大最小化
在Form窗口下,右击属性,在FormBorderStyle中选择FixdeSingle;将MaximizeBox和MinimizeBox设置为False.
2.用户名最大长度为9个字符,密码不可见
在用户名对应的TextBox控件中,将MaxLength值设置为9;
在密码对应的TextBox控件中,将PasswordCha设置为*
5.代码
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.comboBox1.SelectedIndex = 0;
}
private void label1_Click(object sender, EventArgs e)
{
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
if (this.comboBox1.SelectedItem.ToString() == "收银员")
{
if (this.textBox1.Text == "123456" && this.textBox2.Text == "123456")
{
MessageBox.Show("收银员登录成功");
}
else
{
MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
if (this.comboBox1.SelectedItem.ToString() == "库管员")
{
if (this.textBox1.Text == "admin" && this.textBox2.Text == "admin")
{
MessageBox.Show("库管员登录成功");
}
else
{
MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
private void button2_Click(object sender, EventArgs e)//退出
{
Application.Exit();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
}
}