www.pudn.com > wqgame.zip > wnAbout.pas


unit wnAbout; 
 
interface 
 
uses 
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, 
  ExtCtrls; 
 
type 
  TfmAbout = class(TForm) 
    Panel1: TPanel; 
    Image1: TImage; 
    Image2: TImage; 
    Image3: TImage; 
    Image4: TImage; 
    Image5: TImage; 
    procedure Image1Click(Sender: TObject); 
  private 
    { Private declarations } 
  public 
    { Public declarations } 
  end; 
 
var 
  fmAbout: TfmAbout; 
 
implementation 
 
{$R *.DFM} 
 
procedure TfmAbout.Image1Click(Sender: TObject); 
begin 
  Close; 
end; 
 
end.