C# Windows Form下的控件的Validator(数据验证)

由于偶尔的一个想法,谋生了一个做一个windows form下的Validator控件,或者直接说类吧!

因为webform下的Validator控件太好用了。哈哈,直接看代码!

 

下面这个类,主要是一个简单的验证类,不过只是起到一个抛砖引玉的作用,其他的功能,大家发挥想象吧!

  1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Windows.Forms;
6
7 namespace FinanceManager.Code
8 {
9 /// <summary>
10 /// 输入验证类
11 /// </summary>
12 public class Validator
13 {
14 /// <summary>
15 /// 判断指定文本框内容是否满足条件
16 /// </summary>
17 /// <param name="textBox">需要验证的文本框</param>
18 /// <param name="type">指定验证类型</param>
19 /// <param name="LabelDisplayError">需要显示错误的标签</param>
20 /// <param name="lenth">用于验证文本框内字符的长度</param>
21 /// <returns>满足条件返回True,不满足条件返回False</returns>
22 public static Boolean ValidTextBox(TextBox textBox, ValidType type, Label LabelDisplayError, Int32 lenth = 10)
23 {
24 if (LabelDisplayError == null)
25 {
26 return ValidTextBox(textBox, type, lenth);
27 }
28 else
29 {
30 if (!ValidTextBox(textBox, type, lenth))
31 {
32 LabelDisplayError.Visible = true;
33 return ValidTextBox(textBox, type, lenth);
34 }
35 else
36 {
37 LabelDisplayError.Visible = false;
38 return ValidTextBox(textBox, type, lenth);
39 }
40 }
41 }
42 /// <summary>
43 /// 判断指定文本框内容是否满足条件
44 /// </summary>
45 /// <param name="textBox">需要验证的文本框</param>
46 /// <param name="type">指定验证类型</param>
47 /// <param name="lenth">用于验证文本框内字符的长度</param>
48 /// <returns>满足条件返回True,不满足条件返回False</returns>
49 public static Boolean ValidTextBox(TextBox textBox, ValidType type, Int32 lenth = 10)
50 {
51 Boolean flag = false;
52 switch (type)
53 {
54 case ValidType.Required:
55 if (!String.IsNullOrEmpty(textBox.Text.Trim()))
56 {
57 flag = true;
58 }
59 else
60 {
61 flag = false;
62 }
63 break;
64 case ValidType.CharLength:
65 if (!String.IsNullOrEmpty(textBox.Text.Trim()))
66 {
67 if (textBox.Text.Trim().Length < lenth)
68 {
69 flag = true;
70 }
71 else
72 {
73 flag = false;
74 }
75 }
76 else
77 {
78 flag = false;
79 }
80 break;
81 case ValidType.EnglishChar:
82 if (!String.IsNullOrEmpty(textBox.Text.Trim()))
83 {
84 foreach (Char c in textBox.Text.Trim().ToLower())
85 {
86 if (!(c >= 'a' && c <= 'z'))
87 {
88 flag = false;
89 }
90 }
91 flag = true;
92 }
93 else
94 {
95 flag = false;
96 }
97 break;
98 case ValidType.Number:
99 if (!String.IsNullOrEmpty(textBox.Text.Trim()))
100 {
101 Int32 i = 0;
102 if (Int32.TryParse(textBox.Text.Trim(), out i))
103 {
104 flag = true;
105 }
106 else
107 {
108 flag = false;
109 }
110 }
111 else
112 {
113 flag = false;
114 }
115 break;
116 }
117
118 return flag;
119 }
120 }
121 /// <summary>
122 /// 验证类型
123 /// </summary>
124 public enum ValidType
125 {
126 /// <summary>
127 /// 表示必须填写的项
128 /// </summary>
129 Required,
130 /// <summary>
131 /// 表示必须为数字的项
132 /// </summary>
133 Number,
134 /// <summary>
135 /// 表示必须为英文字符的项
136 /// </summary>
137 EnglishChar,
138 /// <summary>
139 /// 表示必须为指定长度的项
140 /// </summary>
141 CharLength
142 }
143 }


那么,我就在用户登录的地方用到了,这个代码、

看看我的界面:

控件布局就这样吧,主要是为了验证我们的功能!(后面童鞋,别拿鸡蛋砸我~)

我设置的是:用户名和密码必填,现在我为了测试,我直接点击“用户登录”按钮,出现以下界面:

怎么样?看见用户名后面那个星号了吧?顺眼吧!跟webform下的validator差不多吧!呵呵,我填写用户名,不写密码看看,如何?

呵呵,貌似很管用,现在我们看看后台代码、

 1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Linq;
7 using System.Text;
8 using System.Windows.Forms;
9 using FinanceManager.Code; //引用上面验证类
10
11 namespace FinanceManager
12 {
13 public partial class frmLogin : Form
14 {
15 public frmLogin()
16 {
17 InitializeComponent();
18 }
19
20 private void button1_Click(object sender, EventArgs e)
21 {
22 if (!Validator.ValidTextBox(txtUserName, ValidType.Required, lblErrorName))
23 {
24 MessageBox.Show("用户名必填,请输入用户名!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
25 txtUserName.Focus();
26 }
27 else if (!Validator.ValidTextBox(txtPassword, ValidType.Required, lblErrorPassword))
28 {
29 MessageBox.Show("密码必填,请输入用户密码!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
30 txtPassword.Focus();
31 }
32 else
33 {
34 MessageBox.Show("恭喜您,登录成功!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
35 frmMain main = new frmMain();
36 main.Show();
37 this.Hide();
38 }
39 }
40 }
41 }

代码清晰易懂把!希望对大家有启发,这个还可以做成属性,也可以自己扩展textbox控件,各种各样的方法都可以实现,主要要说明的一点,大家多动脑子,多共享点代码,让我们的路走的更宽,更远!

同时,也欢迎各位关注【mrhuo工作室】,网址:http://www.mrhuo.com


 

转载于:https://www.cnblogs.com/MrHuo/archive/2012/03/06/WinformValidator.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377687.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

七、流水查询---记录用户登录信息

一、数据库的建立 在fiber_yy数据库下创建yy_user_record表 可以先手动填入几条数据信息 初始数据库信息 username为用户账号 sex为用户注册所填写的性别 phone为用户手机号 time为用户登录该系统的时间 二、页面的设计 登录注册页面我就不演示了&#xff0c;前几篇博文…

leetcode 455. 分发饼干 思考分析

目录题目自己的思路以及AC代码参考思路题目 假设你是一位很棒的家长&#xff0c;想要给你的孩子们一些小饼干。但是&#xff0c;每个孩子最多只能给一块饼干。 对每个孩子 i&#xff0c;都有一个胃口值 g[i]&#xff0c;这是能让孩子们满足胃口的饼干的最小尺寸&#xff1b;并…

c++ cdi+示例_C ++'not'关键字和示例

c cdi示例"not" is an inbuilt keyword that has been around since at least C98. It is an alternative to ! (Logical NOT) operator and it mostly uses with the conditions. “ not”是一个内置关键字&#xff0c;至少从C 98起就存在。 它是替代&#xff01; …

【second】Flatten Binary Tree to Linked List

递归 void flatten(TreeNode *root) {// Note: The Solution object is instantiated only once and is reused by each test case.flat(root);}TreeNode* flat(TreeNode* root){if(!root)return NULL;TreeNode* left_tail flat(root->left);TreeNode* right_tail flat(ro…

八、流水查询---记录纺织品出库信息

一、数据库的建立 在fiber_yy数据库下创建yy_textile_record表 可以先手动填入几条数据信息 初始数据库信息 第一条数据的username是空格不是null number为织物的品号(唯一的) stock为出货量 username为哪个账号 time为出货时间 二、页面的完善 登录注册页面我就不演示…

应用程序栏【WP7学习札记之九】

本节是WP7学习札记的第九篇&#xff0c;讲的是系统托盘和应用程序栏&#xff0c;具体内容是系统托盘和应用程序栏的介绍&#xff0c;如何分别使用C#、xaml以及Expression Blend生成应用程序栏&#xff0c;应用程序栏的透明度以及对屏幕方向改变的支持。摘要如下&#xff1a; 系…

椭圆曲线密码学导论pdf_椭圆曲线密码学

椭圆曲线密码学导论pdf历史 (History) The use of elliptic curves in cryptography was advised independently by Neal Koblitz and Victor S. Miller in 1985. Elliptic curve cryptography algorithms entered large use from 2004 to 2005. 1985年&#xff0c; Neal Kobli…

leetcode 第 216 场周赛 整理

目录1662. 检查两个字符串数组是否相等题目自己代码5606. 具有给定数值的最小字符串题目自己代码贪心算法1664. 生成平衡数组的方案数题目自己代码动态规划优化1665. 完成所有任务的最少初始能量题目思路1662. 检查两个字符串数组是否相等 题目 给你两个字符串数组 word1 和 …

九、忘记密码功能的实现

一、页面设计 login页面&#xff0c;和第二篇博文(用户登录和注册)页面基本一样&#xff0c;只不过多了一个按钮 其中忘记密码&#xff1f;点我找回 为button3 retrieve_password页面 change_password页面 页面如下&#xff1a; 二、数据库 因为是忘记密码&#xff0c;…

Android中对手机文件进行读写

参考张泽华视频 &#xff08;一&#xff09;读写手机内存卡中的文件 对手机中的文件进行读写操作&#xff0c;或者新增一个文件时&#xff0c;可直接使用openFileOutput / openFileInput 得到文件的输出、输入流。 FileOutputStream fos this.openFileOutput("private.…

联轴器选型_联轴器| 软件工程

联轴器选型耦合 (Coupling) In general terms, the term coupling is defined as a thing that joins together two objects. If we talk about software development, then the term coupling is related to the connection between two modules, i.e. how tight interaction …

剑指 Offer 10- I. 斐波那契数列 (从重叠子问题到备忘录到dp数组迭代解法)

目录题目描述1、暴力递归法的重叠子问题2、备忘录解法3、dp数组迭代算法4、滚动数组优化5、参考链接题目描述 写一个函数&#xff0c;输入 n &#xff0c;求斐波那契&#xff08;Fibonacci&#xff09;数列的第 n 项。斐波那契数列的定义如下&#xff1a; F(0) 0, F(1) 1 F…

C# 收邮件

C#没有内置收邮件的类&#xff0c;参考网络上的代码&#xff0c;针对POP3协议服务器使用 Jmail组件来收邮件&#xff0c;针对IMAP协议服务器使用LumiSoft.Net 。 另外&#xff0c;一般免费邮箱需要在邮箱设置中开启 POP3&#xff08;或IMAP&#xff09;、 SMTP服务才可以使用非…

HDU- 1754 I Hate It

http://acm.hdu.edu.cn/showproblem.php?pid1754 记住那让自己wa的地方。 I Hate It Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 29300 Accepted Submission(s): 11615 Problem Description很多学校流行…

mcq 队列_MCQ | 软件生命周期模型

mcq 队列Q1. Which of the following models is best suited when the requirements of the software are not decided and also the user is not sure about how he wants the user interface to look like? Q1。 当不确定软件的需求并且用户不确定自己希望用户界面看起来如何…

十、纺织品库存管理系统全部功能展示

一、系统主页面—Form1 系统运行加载页面&#xff0c;主要包含三个功能&#xff0c;①登录、②注册、③退出系统 程序运行图&#xff1a; 登录功能&#xff0c;跳转到登录页面 注册功能&#xff0c;跳转到注册页面 退出系统&#xff0c;程序结束运行 代码如下&#xff1a; …

leetcode 376. 摆动序列 思考分析

目录题目思路分析代码总结题目 如果连续数字之间的差严格地在正数和负数之间交替&#xff0c;则数字序列称为摆动序列。第一个差&#xff08;如果存在的话&#xff09;可能是正数或负数。少于两个元素的序列也是摆动序列。 例如&#xff0c; [1,7,4,9,2,5] 是一个摆动序列&am…

[EF在VS2010中应用Entity framework与MySQL

在VS2010中应用Entity framework与MySQL 罗朝辉 (http://www.cnblogs.com/kesalin/) 本文遵循“署名-非商业用途-保持一致”创作公用协议本文讲述了在VS2010中使用EF与MySQL的一个简单示例。 工具安装&#xff1a; 1&#xff0c;MySQL MySQL Community Server Connector/NET 6…

c++ cdi+示例_C ++“和”关键字示例

c cdi示例"and" is an inbuilt keyword that has been around since at least C98. It is an alternative to && (Logical AND) operator and it mostly uses with the conditions. “ and”是一个内置关键字&#xff0c;至少从C 98起就存在。 它是&&am…

Python上个手

Python&#xff0c;由吉多范罗苏姆&#xff08;Guido van Rossum&#xff09;在1989打发圣诞节放假时间的一门“课余”编程项目&#xff0c;至今已有二十多年的历史&#xff0c;语法简洁清晰&#xff0c;深受喜爱&#xff1b; 小窥 # 查看版本 python -V # 输出 print "he…