www.pudn.com > Όμ²ιΓ¨.zip > ABOUT.PAS
unit About;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TAboutBox = class(TForm)
Panel1: TPanel;
Panel2: TPanel;
Panel3: TPanel;
pnVersion: TPanel;
BitBtn1: TBitBtn;
Bevel1: TBevel;
Image1: TImage;
procedure BitBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.DFM}
procedure TAboutBox.BitBtn1Click(Sender: TObject);
begin
Close;
end;
end.