2016年5月19日

类字段及类方法

摘要: 1. 类字段, 使用class var 声明类字段。 Type TBall = class(TObject) class var shape: string; name: string; end; 2.类方法 - 类方法声明以class开始,其余和一般方法没有任何区别。class关键字不能省略。 - 阅读全文

posted @ 2016-05-19 12:38 rexhu 阅读(505) 评论(0) 推荐(0) 编辑

窗体可视化继承

摘要: 1.新建工程 - 创建基类窗体,设置为不自动创建,保存 - 创建子类窗体,new - other - inheritable items - 选择基类窗体。 2.已有工程 - 引用基类单元 - 修改Class 基类 - 修改 dfm档,object -> inherited (关键) inherit 阅读全文

posted @ 2016-05-19 07:54 rexhu 阅读(188) 评论(0) 推荐(0) 编辑

导航