资源简介
自定义的一个TextBox控件,包含限制只能输入数字、验证邮箱、电话、手机、身份证号码、邮件地址等功能,提供源码,蛮适合初学者学习和使用的~~
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Text.Regularexpressions;
using TextBoxM;
namespace TextBoxM
{
//创建一个枚举类
public enum AllowType
{
All
Num
UserName
Psw
Email
IDcard
MobliePhone
Tel
}
public class AgiaTxetBox:TextBox
{
private AllowType _allowType = AllowType.All;
public AllowType Type
{
get { return _allowType; }
set { _allowType = value; }
}
//string UserName = “^(?!_)(?!.*?_$)[a-zA-Z0-9_\u4e00-\u9fa5]+$“;//限制字母、数字和下划线,下划线不能放在最末
///
/// 身份证验证方法
///
///
///
public static bool IsValidIdcard(string Id)
{
if (Id.Length != 18)
{
return false;
}
//数字验证
long n = 0;
if (long.TryParse(Id.Remove(17) out n) == false || n < Math.Pow(10 16) || long.TryParse(Id.Replace(‘x‘ ‘0‘).Replace(‘X‘ ‘0‘) out n) == false)
{
return false;
}
//省份验证
string address = “11x22x35x44x53x12x23x36x45x54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91“;
if (address.IndexOf(Id.Remove(2)) == -1)
{
return false;
}
//生日验证
string birth = Id.Substring(6 8).Insert(6 “-“).Insert(4 “-“);
DateTime time = new DateTime();
if (DateTime.TryParse(birth out time) == false)
{
return false;
}
//校验码验证
string[] arrVarifyCode = (“10x98765432“).Split(‘‘);
string[] Wi = (“7910584216379105842“).Split(‘‘);
char[] Ai = Id.Remove(17).ToCharArray();
int sum = 0;
for (int i = 0; i < 17; i++)
{
sum += int.Parse(Wi[i]) * int.Parse(Ai[i].ToString());
}
int y = -1;
Math.DivRem(sum 11 out y);
if (arrVarifyCode[y] != Id.Substring(17 1).ToLower())
{
return false;
}
return true;
}
///
/// 重写KeyPress事件
///
///
protected override void onkeypress(KeyPressEventArgs e)
{
e.Handled = true;
if (_allowType == AllowType.Email || _allowType == AllowType.UserName || _allowType == AllowType.All || _allowType == AllowType.Psw)
{
e.Handled = false;
}
//限制只能输入数字
if
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 920 2011-11-25 14:33 TextBoxW.sln
..A..H. 12800 2011-11-25 14:37 TextBoxW.suo
文件 2597 2011-11-25 14:32 TextBoxM\AgiaTextBox.csproj
文件 7577 2011-11-25 14:32 TextBoxM\AgiaTxetBox.cs
文件 15872 2011-11-25 14:33 TextBoxM\bin\Debug\TextBoxM.pdb
文件 373 2011-11-25 14:33 TextBoxM\obj\Debug\AgiaTextBox.csproj.FileListAbsolute.txt
文件 951 2011-11-25 14:32 TextBoxM\obj\Debug\TextBoxM.csproj.FileListAbsolute.txt
文件 7680 2011-11-25 14:33 TextBoxM\obj\Debug\TextBoxM.dll
文件 15872 2011-11-25 14:33 TextBoxM\obj\Debug\TextBoxM.pdb
文件 1348 2011-11-20 11:19 TextBoxM\Properties\AssemblyInfo.cs
目录 0 2011-11-25 14:32 TextBoxM\obj\Debug\Refactor
目录 0 2011-11-20 11:19 TextBoxM\obj\Debug\TempPE
目录 0 2011-11-25 14:33 TextBoxM\bin\Debug
目录 0 2011-11-25 14:33 TextBoxM\obj\Debug
目录 0 2011-11-25 14:32 TextBoxM\bin
目录 0 2011-11-20 11:19 TextBoxM\obj
目录 0 2011-11-20 11:19 TextBoxM\Properties
目录 0 2011-11-25 14:33 TextBoxM
----------- --------- ---------- ----- ----
65990 18
相关资源
- 验证码生成组件支持干扰点和干扰线
-
Pro C# 5.0 and the .NET 4.5 fr
amework - C#中二维码实现源代码修正版
- C#调用Lucene方法-实现快速搜索
- c#酒店管理系统235697
- C#课设音乐播放器完整代码加论文
- c#影院系统大作业,班评第一名
- MyMusicBoxc#音乐播放器
- C#入门经典(第5版)中文高清版含代
- Unity2D小游戏——炸弹人类似qq堂的小
- 精伦台式具名身份证阅读器机具C#源代
- C# C/s项目源码
- visual C#2005 管理系统开发经典案例 罗
- C# 实现局域网视频监控Socket 编程
- C#版24点扑克游戏源代码
- Visual Studio C#播放器制作
- 大图找小图 C#图片对比高速找图源码
- C#实现高斯正反算
- ASP.NET C#大学生就业管理系统
- 俄罗斯方框UNITY项目案例包含代码
- 杭州三汇语音卡电话拨号程序源代码
- C#毕业生信息管理系统源码
- c# SQL 旅游管理系统
- 微软认证考试c# 大全
- 青岛理工c#课设
- 基于C#与Mwic_32.dll编写的IC刷卡读写考
- C# 手写输入源码
- C#企业电话客服系统215910
- C#一个简陋的截图工具-供初学用我也
- c# 图像旋转 winform 窗体 图片转动
评论
共有 条评论