-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathabout.pas
More file actions
48 lines (37 loc) · 940 Bytes
/
about.pas
File metadata and controls
48 lines (37 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
unit about;
interface
uses
Windows, SysUtils, Classes, Controls, Forms, StdCtrls, ExtCtrls, Graphics;
type
TFormAbout = class(TForm)
ImageProgram: TImage;
LabelShadow: TLabel;
LabelTitle: TLabel;
ShapeTitle: TShape;
LabelFree: TLabel;
LabelText: TLabel;
BevelAbout: TBevel;
LabelCopyright: TLabel;
ButtonClose: TButton;
procedure FormCreate(Sender: TObject);
procedure ButtonCloseClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FormAbout: TFormAbout;
implementation
{$R *.dfm}
procedure TFormAbout.FormCreate(Sender: TObject);
begin
LabelText.Caption :=
'This game is dedicated to: '#13'Tjokro, Djeq, Mbul, Komeng, Susee,'#13+
'and all staffs of UPPTI Brawijaya University.';
end;
procedure TFormAbout.ButtonCloseClick(Sender: TObject);
begin
Close;
end;
end.