今天用C#做的一个小的注册练习

下边是实现的代码:
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.Text.RegularExpressions;
namespace Registerting
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
txtUserName.Enter += new EventHandler(txtUserName_Enter);
txtUserName.Leave += new EventHandler(txtUserName_Leave);
txtPassword.Enter += new EventHandler(txtUserName_Enter);
txtPassword.Leave += new EventHandler(txtPassWord_Leave);
txtPWConfirm.Enter += new EventHandler(txtPWConfirm_Enter);
txtPWConfirm.Leave += new EventHandler(txtPWConfirm_Leave);
txtMail.Enter += new EventHandler(txtMail_Enter);
txtMail.Leave += new EventHandler(txtMail_Leave);
chkAll.Enter += new EventHandler(chkAll_Enter);
chkAll.Leave += new EventHandler(chkAll_Leave);
}
/// <summary>
/// txtUserName(用户名)失去焦点事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void txtUserName_Leave(object sender, EventArgs e)
{
if (txtUserName.Text.Length < 1)
{
lblUNAttention.Visible = true;
lblUNAttention.Text = "用户名不能为空";
}
}
/// <summary>
/// txtUserName(用户名)获得焦点事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void txtUserName_Enter(object sender, EventArgs e)
{
if (txtUserName.Text.Length > 0)
{
lblUNAttention.Visible = false;
}
}
/// <summary>
/// txtPassWord(密码)失去焦点事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void txtPassWord_Leave(object sender, EventArgs e)
{
if ((0 < txtPassword.Text.Length) && (txtPassword.Text.Length < 6))
{
lblPasswordAttenton.Visible = true;
lblPasswordAttenton.Text = "密码不能少于六位";
}
else if (txtPassword.Text.Length < 1)
{
lblPasswordAttenton.Visible = true;
lblPasswordAttenton.Text = "密码不能为空";
}
}
/// <summary>
/// txtPassWord(密码)获得焦点事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void txtPassWord_Enter(object sender, EventArgs e)
{
if (txtUserName.Text.Length > 0)
{
lblUNAttention.Visible = false;
}
else
{
lblUNAttention.Visible = true;
}
lblPasswordAttenton.Visible = false;
}
/// <summary>
/// txtPWConfirm(密码)失去焦点事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void txtPWConfirm_Enter(object sender, EventArgs e)
{
if (txtUserName.Text.Length > 0)
{
lblUNAttention.Visible = false;
}
else
{
lblUNAttention.Visible = true;
}
if (txtPassword.Text.Length > 0)
{
lblPasswordAttenton.Visible = false;
}
else
{
lblPasswordAttenton.Visible = true;
}
}
/// <summary>
/// txtPWConfirm(密码)获得焦点事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void txtPWConfirm_Leave(object sender, EventArgs e)
{
if (txtPWConfirm.Text.Length < 1)
{
lblPWAttionC.Text = "确认密码输入不能为空";
lblPWAttionC.Visible = true;
}
else if (txtPWConfirm.Text != txtPassword.Text)
{
lblPWAttionC.Text = "两次密码输入不一致,\n请重新输入";
lblPWAttionC.Visible = true;
}
else if (txtPWConfirm.Text == txtPassword.Text)
{
lblPWAttionC.Visible = false;
}
}
private void txtMail_Enter(object sender, EventArgs e)
{
lblMAttion.Visible = false;
}
private void txtMail_Leave(object sender, EventArgs e)
{
string reg = @"^\s*([A-Za-z0-9_-]+(\.\w+)*@([\w-]+\.)+\w{2,10})\s*$";
if (txtMail.Text.Length < 1)
{
lblMAttion.Text = "邮箱输入不能为空";
lblMAttion.Visible = true;
}
else if (Regex.IsMatch(txtMail.Text, reg) == false)
{
lblMAttion.Text = "邮箱输入不合法";
lblMAttion.Visible = true;
}
}
private void chkAll_Enter(object sender, EventArgs e)
{
lblHobbyAttention.Visible = false;
}
private void chkAll_Leave(object sender, EventArgs e)
{
int sum = 0;
for (int i = 0; i < chklEate.Items.Count; i++)
{
if (chklEate.GetItemChecked(i) == true)
{
sum = sum + 1;
}
}
if (sum < 1)
{
lblHobbyAttention.Visible = true;
lblHobbyAttention.Text = "您还没有选择任何爱好";
}
}
/// <summary>
/// 全选或者全不选按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void chkAll_CheckedChanged(object sender, EventArgs e)
{
for (int i = 0; i < chklEate.Items.Count; i++)
{
if (chkAll.Checked == true)
{
//全选
chklEate.SetItemChecked(i, true);
}
else
{
//全不选
chklEate.SetItemChecked(i, false);
}
}
}
/// <summary>
/// 提交注册信息,如果注册信息都满足条件,那么提交成功,如果没有,则注册失败
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnRegister_Click(object sender, EventArgs e)
{
//邮箱的正则表达式
string reg = @"^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$";
int sum = 0;
//计算选择的爱好数目
for (int i = 0; i < chklEate.Items.Count; i++)
{
if (chklEate.GetItemChecked(i) == true)
{
sum = sum + 1;
}
}
//判断注册的所有信息是否合法,合法就注册成功,并关闭窗口
if ((txtUserName.Text.Length > 0) && (txtPassword.Text.Length > 5) && (txtPassword.Text == txtPWConfirm.Text) && (Regex.IsMatch(txtMail.Text, reg) == true) && (sum > 0))
{
DialogResult dr = MessageBox.Show("您注册成功!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
if (dr == DialogResult.OK)
{
this.Close();
}
}
else
{
MessageBox.Show("您注册失败!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
/// <summary>
/// 清空输入信息和提示信息
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void btnConcel_Click(object sender, EventArgs e)
{
txtUserName.Clear();
lblUNAttention.Text = "";
txtPassword.Clear();
lblPasswordAttenton.Text = "";
txtPWConfirm.Clear();
lblPWAttionC.Text = "";
txtMail.Clear();
lblMAttion.Text = "";
chklEate.ClearSelected();
lblHobbyAttention.Text = "";
chkAll.Checked = false;
}
}
}
今天用C#做的一个小的注册练习的更多相关文章
- FMX相当于在界面上自己又做了一个小操作系统
FMX的自画界面我也不看好,比如复制粘贴,太丑了,系统做得很好很精细的复制粘贴界面,就是无法调出,比如MIUI,复制粘贴还能有个放大镜,可以选择到屏幕边缘的文字,可以选择剪贴板内多个可粘贴的文字:还有 ...
- DOM的利用冒泡做的一个小程序
我们都知道DOM的事件流,有冒泡事件,如何有效的利用冒泡? 优化:应该尽量少的添加事件监听:原理:每添加一个事件监听事件,就会在浏览器中添加一个EventListener,如果数量过多,浏览器只能一个 ...
- 加班两个星期做的一个小系统~(winform)
不管怎么样~加班两个星期,单独一人,努力将公司需要用的系统给做出来了,也感谢提供技术帮助的可爱人儿~ 首先,系统有个检测版本的功能,若版本不是最新的,则会自动更新(公司要求,必须强制更新)~ 更新界面 ...
- 基于Tkinter以及百度翻译爬虫做的一个小的翻译软件
首先看效果: 输入Hello, 可见输出 int. 打招呼 下面看源码: from tkinter import * import requests# 首先导入用到的库 request = reque ...
- 对于xss等有关的html,url,unicode编码做的一个小总结。
参考:http://bobao.360.cn/learning/detail/292.html,算是对前部分作一个总结性的学习. 1<a href="%6a%61%76%61%73%6 ...
- Angularjs做的一个小页面
<!DOCTYPE html><html lang="en" ng-app="todolist"> <head> <m ...
- 自己做的一个小demo
上图: 主段代码: <script type="text/javascript"> var getRandomColor = function(){ return (f ...
- 用Unity做的一个小游戏,仿照一个样例写的,个人认为文章写的不错,哈哈
- jquery做一个小的轮播插件---有BUG,后续修改
//首页无缝轮播 ; (function($, window, document, undefined) { $.fn.slider = function(options) { var default ...
随机推荐
- Java代码优化(转)
前言 代码优化,一个很重要的课题.可能有些人觉得没用,一些细小的地方有什么好修改的,改与不改对于代码的运行效率有什么影响呢?这个问题我是这么考虑的,就像大海里面的鲸鱼一样,它吃一条小虾米有用吗?没用, ...
- 十天学Linux内核之第五天---有关Linux文件系统实现的问题
原文:十天学Linux内核之第五天---有关Linux文件系统实现的问题 有时间睡懒觉了,却还是五点多醒了,不过一直躺倒九点多才算起来,昨晚一直在弄飞凌的嵌入式开发板,有些问题没解决,自己电脑系统的问 ...
- eclipse 构造 C++ 11 -- ubuntu 12.04
设备g++ 4.8 sudo apt-get install python-software-properties sudo add-apt-repository ppa:ubuntu-toolcha ...
- 沃森Mysql数据库修复工具
华信Mysql数据库修复程序是由北京华信数据恢复中心独立研发.主要针对Mysql数据库损坏的恢复. 本程序可用于因为各种误操作而导致数据丢失的恢复,以及因为断电.陈列损坏.硬盘坏道等各种原因导致数据库 ...
- I2C驱动程序框架probe道路
基于Linux的I2C驱动器.采纳probe道路.根据这个框架,如下面就可以写任何支持I2C总线设备Linux驱动器. I2C设备连接到cpu具体i2c接口.被安装在cpu的i2c适配器.i2c设备和 ...
- JavaScript语言基础知识1
我们想知道什么JavaScript.首先,我们必须知道JavaScript有什么特点? JavaScript究竟是什么?它是一种基于对象而且具有安全性的脚本语言,对.它是脚本语言.所以它有下面特点: ...
- Linux C/C++计划Shell命令大杂烩(1)
1, 请参见发行信息 cat /etc/issue 2, 查看内核版本号 uname -r 查看内核版本号 uname -p 查看处理器类型32bit/64bit uname -n 查看网络主机名(o ...
- 熊猫猪新系统測试之三:iOS 8.0.2
本来本猫要等到8.1版本号出来后再做測试的,结果等来等去就是迟迟不推送更新呀!说好10月20号的iOS 8.1呢?为了一鼓作气写完,就先不等了.先拿手头的iOS 8.0.2系统做一下測试吧! 8.x系 ...
- bootstrap标准模板
<!DOCTYPE html><!--html5定义--> <html lang="en"> <head> <meta cha ...
- iOS 开发者必不可少的 75 个工具
如果你去到一位熟练的木匠的工作室,你总是能发现他/她有一堆工具来完成不同的任务. 软件开发同样如此.你可以从软件开发者如何使用工具中看出他水准如何.有经验的开发者精于使用工具.对你目前所使用的工具不断 ...