魔兽登陆界面制作
2018-06-23 23:49:27来源:未知 阅读 ()
using System;
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 MyWarcraft
{
public partial class FrmLogin : Form
{
public FrmLogin()
{
InitializeComponent();
}
public LoginInfo[] array; //用于存储登录用户的信息
private void FrmLogin_Load(object sender, EventArgs e)
{
//初始三个用户信息
array = new LoginInfo[10];
LoginInfo info1 = new LoginInfo();
info1.Name = "孙丽丽";
info1.Id = "120185198005088521";
info1.Email = "lili@sohu.com";
info1.Password = "lili1980";
array[0] = info1;
LoginInfo info2 = new LoginInfo();
info2.Name = "范晶晶";
info2.Id = "110186198111088725";
info2.Email = "jingjing@sina.com";
info2.Password = "jingjing";
array[1] = info2;
LoginInfo info3 = new LoginInfo();
info3.Name = "陈小坤";
info3.Id = "110125197905123571";
info3.Email = "xiaokun@sohu.com";
info3.Password = "chenkun";
array[2] = info3;
lblValidation.Visible = false;//初始时将验证提示信息隐藏
}
private void btnLogin_Click(object sender, EventArgs e)
{
if (txtEmail.Text.Trim() == "" || txtPwd.Text.Trim() == "")
{
MessageBox.Show("用户名或密码不能为空!", "提示");
}
else
{
string userName = txtEmail.Text;
string pwd = txtPwd.Text;
bool isOK = false;
foreach (LoginInfo item in array)
{
if (item != null)
{
if (item.Email == userName && item.Password == pwd)
{
lblValidation.Visible = false;
isOK = true;
FrmMain fm = new FrmMain();
fm.lblName.Text = "欢迎," + item.Name;//将信息传递到主页面
fm.Show();
break;
}
}
}
if (isOK == false)
{
lblValidation.Visible = true;
txtPwd.Text = "";
txtPwd.Focus();
}
}
}
private void llbRegist_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
FrmRegist fr = new FrmRegist();
fr.fl = this;
fr.Show();
this.Hide();//登录窗体隐藏
}
private void picClose_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
}
}
using System;
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 MyWarcraft
{
public partial class FrmRegist : Form
{
public FrmRegist()
{
InitializeComponent();
lblEqualEmail.Visible = false;
lblEqualPwd.Visible = false;
lblInfo.Visible = false;
}
public FrmLogin fl;//登录窗体对象
private void btnRegist_Click(object sender, EventArgs e)
{
lblInfo.Visible = false;
if (txtName.Text.Trim() == "" || txtId.Text.Trim() == "" || txtEmail.Text.Trim() == "" || txtReEmail.Text.Trim() == "" || txtPwd.Text.Trim() == "" || txtRePwd.Text.Trim() == "")
{
lblInfo.Visible = true;
return;
}
bool isOK = true;
LoginInfo info = new LoginInfo();
info.Name = txtName.Text;
info.Id = txtId.Text;
if (txtEmail.Text == txtReEmail.Text)
{
info.Email = txtEmail.Text;
lblEqualEmail.Visible = false;
}
else
{
isOK = false;
lblEqualEmail.Visible = true;
}
if (txtPwd.Text == txtRePwd.Text)
{
info.Password = txtPwd.Text;
lblEqualPwd.Visible = false;
}
else
{
isOK = false;
lblEqualPwd.Visible = true;
}
if (isOK)
{
MessageBox.Show("恭喜,通过验证!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
//找到数组中空闲的位置,将注册成功的对象传入
for (int i = 0; i < fl.array.Length; i++)
{
if (fl.array[i] == null)
{
fl.array[i] = info;
break;
}
}
fl.Visible = true;
this.Close();
}
}
private void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
private void panel2_Paint(object sender, PaintEventArgs e)
{
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
}
}
}
using System;
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 MyWarcraft
{
public partial class FrmMain : Form
{
public FrmMain()
{
InitializeComponent();
}
private void FrmMain_Load(object sender, EventArgs e)
{
}
private void picClose_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- HTML连载88-今天把努比亚界面仿真写完了(完结连载) 2020-05-14
- HTML连载82-努比亚界面顶部区域和广告区域 2020-04-12
- Web实验一 国内旅游界面 2020-03-10
- form实现浏览者登陆、注册页面与浏览器的交互 2020-02-29
- [HTML] websocket的模拟日志监控界面 2020-01-05
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash