Delphi单元文件
2020-12-13 16:17
标签:style blog io color ar 使用 sp for strong Delphi单元文件 标签:style blog io color ar 使用 sp for strong 原文地址:http://www.cnblogs.com/zhangzhanlin/p/4081442.htmlunit Unit1; //单元文件名
interface //这是接口关键字,用它来标识文件所调用的单元文件
uses //程序用到的公共单元
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs;
type //这里定义了程序所使用的组件,以及组件所对应的事件
TForm1 = class(TForm)
private //定义私有变量和私有过程
{ Private declarations }
public //定义公共变量和公共过程
{ Public declarations }
end;
var //定义程序使用的公共变量
Form1: TForm1;
implementation //程序代码实现部分
{$R *.dfm}
end