You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7880 8e941d3f-bd1b-0410-a28a-d453659cc2b4
44 lines
616 B
ObjectPascal
44 lines
616 B
ObjectPascal
unit AboutUnit;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
|
StdCtrls, ExtCtrls;
|
|
|
|
type
|
|
|
|
{ TAboutBox }
|
|
|
|
TAboutBox = class(TForm)
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
Label3: TLabel;
|
|
OKButton: TButton;
|
|
Panel1: TPanel;
|
|
procedure OKButtonClick(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
AboutBox: TAboutBox;
|
|
|
|
implementation
|
|
|
|
|
|
procedure TAboutBox.OKButtonClick(Sender: TObject);
|
|
begin
|
|
AboutBox.Hide;
|
|
end;
|
|
|
|
initialization
|
|
{$I AboutUnit.lrs}
|
|
|
|
|
|
end.
|
|
|