上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
摘要: 对象属性using System;using System.Collections.Generic;using System.Text;namespace LeikuObject{ public class TelObject { private int _Code; ... 阅读全文
posted @ 2015-06-04 23:46 九省巡按 阅读(2626) 评论(1) 推荐(1) 编辑
摘要: 新建一个空白窗体每个窗体都有这样3个事件:KeyDown、KeyPress、KeyUp,KeyDown和KeyPress都是按键按下事件,但KeyDown用的是KeyCode跟键盘各个按键相对应,它对应Keys枚举,用起来比较方便;而KeyPress用的是KeyChar,这个就要找ASC II编码了... 阅读全文
posted @ 2015-06-03 23:31 九省巡按 阅读(719) 评论(0) 推荐(0) 编辑
摘要: WinForm窗体间传值的方法,包括了静态变量、公共变量、共有属性等方式。窗体间传递数据,无论是父窗体操作子窗体,还是子窗体操作父窗体,有以下几种方式:1.公共静态变量;2.使用共有属性;3.使用委托与事件;4.通过构造函数把主窗体传递到从窗体中;一、通过静态变量特点:传值是双向的,实现简单实现代码... 阅读全文
posted @ 2015-06-02 22:23 九省巡按 阅读(348) 评论(0) 推荐(0) 编辑
摘要: System.Data.SqlClient命名空间为 SQL服务器.NET Framework 数据提供程序。SQL Server .NET Framework 数据提供程序描述了用于在托管空间中访问 SQL Server 数据库的类集合。其中的类:SqlConnection 类表示一个到 SQL ... 阅读全文
posted @ 2015-06-01 23:28 九省巡按 阅读(861) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window... 阅读全文
posted @ 2015-05-31 20:56 九省巡按 阅读(155) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window... 阅读全文
posted @ 2015-05-31 20:53 九省巡按 阅读(178) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window... 阅读全文
posted @ 2015-05-30 22:01 九省巡按 阅读(225) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window... 阅读全文
posted @ 2015-05-30 21:53 九省巡按 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 知识点值类型。值类型是在栈中分配内存,在声明时初始化才能使用,不能为null。值类型超出作用范围系统自动释放内存。主要由两类组成:结构,枚举(enum),结构分为以下几类:整型(Sbyte、Byte、Char、Short、Ushort、Int、Uint、Long、Ulong)浮点型(Float、Do... 阅读全文
posted @ 2015-05-24 23:28 九省巡按 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 抽象类:abstract关键词抽象类不能造自己的实例对象,只能作为父类使用抽象类中可以有抽象属性和抽象方法,必须要在子类中实现有抽象方法和抽象属性的一定是抽象类但抽象类不一定非得有抽象方法和抽象属性抽象类仍然可以作为基类进行与子类之间的类型转换using System;using System.Co... 阅读全文
posted @ 2015-05-24 23:18 九省巡按 阅读(172) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页