今天用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 ...
随机推荐
- MOCK.JS 生成随机数据,拦截 Ajax 请求
mock.js 的用处 前后端分离 :让前端攻城师独立于后端进行开发. 增加单元测试的真实性 :通过随机数据,模拟各种场景. 开发无侵入 :不需要修改既有代码,就可以拦截 Ajax 请求,返回模拟的响 ...
- Java代码优化(转)
前言 代码优化,一个很重要的课题.可能有些人觉得没用,一些细小的地方有什么好修改的,改与不改对于代码的运行效率有什么影响呢?这个问题我是这么考虑的,就像大海里面的鲸鱼一样,它吃一条小虾米有用吗?没用, ...
- LESS使用介绍
使用: 在客户端使用 引入你的 .less 样式文件的时候要设置 rel 属性值为 "stylesheet/less": <link rel="stylesheet ...
- Android Widget 小部件(四---完结) 使用ListView、GridView、StackView、ViewFlipper展示Widget
官方有话这样说: A RemoteViews object (and, consequently, an App Widget) can support the following layout cl ...
- 馋-c语言的规则
在记者采访过程,有着c的认识的情况,有时会被问到有关字符搭配以及运算先后顺序的问题,比方a+++++b的值.++i+++i+++i+i的值等类似的,这都属于c的符号方面的问题.那么如何才干轻而易举的去 ...
- Yii Framework2.0开发教程(10)配合mysql数据库实现用户登录
1.首先在mysql创建一个存用户的表格 create table test_user ( user_id bigint(20) unsigned not null auto_increment co ...
- .net mvc4 从客户端中检测到有潜在危险的 Request.Form 值
[ValidateInput(false)] 即可, 网上说什么Web.Config 里面改,一点用都没有 [HttpPost] [ActionName("Edit")] [Val ...
- asp.net mvc3 的数据验证(一)
原文:asp.net mvc3 的数据验证(一) 对于web开发人员来说,对用户输入的信息进行验证是一个重要但是繁琐的工作,而且很多开发者都会忽略.asp.net mvc3框架使用的是叫做“ ...
- js前端分页之jQuery
锋利的js前端分页之jQuery 大家在作分页时,多数是在后台返回一个导航条的html字符串,其实在前端用js也很好实现. 调用pager方法,输入参数,会返回一个导航条的html字符串.方法的内部比 ...
- centos 7安装mysql5.5
首先centos7 已经不支持mysql,因为收费了你懂得,所以内部集成了mariadb,而安装mysql的话会和mariadb的文件冲突,所以需要先卸载掉mariadb,以下为卸载mariadb,安 ...