unit about;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
|
|
ExtCtrls;
|
|
|
|
type
|
|
|
|
{ Tform_about }
|
|
|
|
Tform_about = class(TForm)
|
|
Button1: TButton;
|
|
Label1: TLabel;
|
|
Label2: TLabel;
|
|
Label3: TLabel;
|
|
Label4: TLabel;
|
|
Label5: TLabel;
|
|
Memo1: TMemo;
|
|
Shape1: TShape;
|
|
procedure Button1Click(Sender: TObject);
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
form_about: Tform_about;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
{ Tform_about }
|
|
|
|
procedure Tform_about.Button1Click(Sender: TObject);
|
|
begin
|
|
close;
|
|
end;
|
|
|
|
end.
|
|
|