Delphi项目文件示例与解析

如下用程序示例的项目文件:

program Project1;
uses Forms, **Unit1** in '**Unit1.pas**' {Form1};
{$R *.res}
begin
  Application.Initialize;
  Application.CreateForm(TForm1, **Form1**);
  Application.Run;
end.

当添加表单和单元时将出现在uses子句中。

ppt 文件大小:1.36MB