about.pas
上传用户:yuandong
上传日期:2022-08-08
资源大小:954k
文件大小:1k
- unit about;
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls, ExtCtrls;
- type
- TAboutBox = class(TForm)
- Image1: TImage;
- Label1: TLabel;
- Label2: TLabel;
- Button1: TButton;
- procedure Button1Click(Sender: TObject);
- private
- { Private-Deklarationen }
- public
- { Public-Deklarationen }
- end;
- var
- AboutBox: TAboutBox;
- implementation
- {$R *.DFM}
- procedure TAboutBox.Button1Click(Sender: TObject);
- begin
- Close;
- end;
- end.