今天用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 ...
随机推荐
- js获取网页的各种高度
原文:js获取网页的各种高度 网页可见区域宽: document.body.clientWidth网页可见区域高: document.body.clientHeight网页可见区域宽: documen ...
- [注意事项&车轮]java源代码 产生局部javadoc api档
随着Eclipse书写java码时间,有时候,因为我们不知道java函数返回.通过鼠标移动到java该功能,假设它javadoc相关内容将被显示. 但是,并非所有java代码javadoc:连装jav ...
- 位记录——Windows 7已安装Sublime Text 3、cynwin、SublimeClang
转载请注明出处:http://blog.csdn.net/cywosp/article/details/34429697 1. 到https://www.cygwin.com/下载setup-x86_ ...
- Samza/KafkaAnalysizing
Apache Samza is a distributed stream processing framework. It uses Apache Kafka for messaging, and A ...
- 【动态规划】leetcode - Maximal Square
称号: Maximal Square Given a 2D binary matrix filled with 0's and 1's, find the largest square contain ...
- springmvc实现long-pulling技术
背景介绍: 项目中有一个通讯模块,本来是用websocket全双工技术实现的,但IE10下面不支持websocket,而国内的360.2345浏 览器封装的所有是IE10下面的内核,考虑到站点在国内的 ...
- Microsoft dotnetConf 2015
Microsoft dotnetConf 2015 一些整理 dotnetConf 2015 直播计划: 第一天 (10 个主讲) - .NET Product Teams 主讲人为 .NET 产 ...
- SQL Server 板机
触发器是一种特殊类型的存储过程.们介绍的存储过程. 触发器主要是通过事件进行触发被自己主动调用运行的. 而存储过程能够通过存储过程的名称被调用. Ø 什么是触发器 触发器对表进行插入.更新.删除的时候 ...
- 工作笔记3.手把手教你搭建SSH(struts2+hibernate+spring)环境
上文中我们介绍<工作笔记2.软件开发经常使用工具> 从今天開始本文将教大家怎样进行开发?本文以搭建SSH(struts2+hibernate+spring)框架为例,共分为3步: 1)3个 ...
- SQL字符串处理函数
字符串函数对二进制数据.字符串和表达式运行不同的运算.此类函数作用于CHAR.VARCHAR. BINARY. 和VARBINARY 数据类型以及能够隐式转换为CHAR 或VARCHAR的数据类型. ...