Unit2.pas
上传用户:autowell
上传日期:2022-06-21
资源大小:16754k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit Unit2;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, StdCtrls;
  6. type
  7.   TForm2 = class(TForm)
  8.     Label1: TLabel;
  9.     Label2: TLabel;
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.   end;
  15. var
  16.   Form2: TForm2;
  17. implementation
  18. {$R *.dfm}
  19. end.