UnitHelp.pas
上传用户:conquerdj
上传日期:2022-07-08
资源大小:417k
文件大小:1k
- unit UnitHelp;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, StdCtrls;
- type
- TFormAbout = class(TForm)
- Button1: TButton;
- Label1: TLabel;
- Label2: TLabel;
- Label3: TLabel;
- Label4: TLabel;
- Label5: TLabel;
- Label6: TLabel;
- Label7: TLabel;
- procedure Button1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- FormAbout: TFormAbout;
- implementation
- {$R *.dfm}
- procedure TFormAbout.Button1Click(Sender: TObject);
- begin
- close;
- end;
- end.