Project1.dpr
上传用户:hy6789
上传日期:2021-02-22
资源大小:164k
文件大小:0k
源码类别:

状态条

开发平台:

Delphi

  1. program Project1;
  2. uses
  3.   Forms,
  4.   Unit1 in 'Unit1.pas' {Form1};
  5. {$R *.res}
  6. begin
  7.   Application.Initialize;
  8.   Application.CreateForm(TForm1, Form1);
  9.   Application.Run;
  10. end.