摘要: 代码下载:http://dev.mjxy.cn/a-Custom-TextBox-validation-numbers-and-text.aspxNumbers and Characters only Textbox Validation in C#源文档 <http://www.codeproject.com/KB/cs/TexboxValidation.aspx> 翻译:白水(敏捷学院)介绍在GUI开发中,处理文本框验证是一种很常见的任务。通常情况下,处理一个TextBox只允许用户输入数字(无论是整数或实)或字母字符,我在网络上找到的代码用正则表达式处理这个问题,它工作得很好 阅读全文
posted @ 2011-07-17 14:12 敏捷学院 阅读(559) 评论(1) 推荐(1) 编辑
摘要: 原文链接:http://dev.mjxy.cn/a-170.aspx// Captcha Image public class CaptchaImage { // Public properties (all read-only). public string Text { get { return this.text; } } public Bitmap Image { get { return this.image; } } public int Width { get { return this.width; } } public int Height { get { return th 阅读全文
posted @ 2011-07-17 09:03 敏捷学院 阅读(333) 评论(0) 推荐(1) 编辑
摘要: Lesson04 类和对象 演练1 类、对象 类的声明 字段、常量字段及访问级别 读写属性演练 属性演练:限制访问器可访问性 方法 构造函数演练2 类的继承与多态 类的继承 继承、虚方法及类的组合 抽象类 静态类成员 接口 索引器 委托敏捷学院C#基础演练是由敏捷学院推出的适合没有任何编程基础的初学者练习使用演练代码。敏捷学院C#基础演练是为本部学员代码训练使用的内部教程。现在共享给大家。通过认真的完成本演练,您将掌握C#语言的语法,为学习高级的C#开发奠定良好的基础。 阅读全文
posted @ 2011-07-17 08:31 敏捷学院 阅读(321) 评论(1) 推荐(0) 编辑