-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUinlay.pas
56 lines (44 loc) · 1.04 KB
/
Uinlay.pas
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
49
50
51
52
53
54
55
56
unit Uinlay;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Objects;
type
TForm24 = class(TForm)
Image1: TImage;
Image2: TImage;
Image3: TImage;
Image4: TImage;
Image5: TImage;
procedure Image5Click(Sender: TObject);
procedure Image2Click(Sender: TObject);
procedure Image3Click(Sender: TObject);
procedure Image4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form24: TForm24;
implementation
{$R *.fmx}
{$R *.LgXhdpiPh.fmx ANDROID}
uses Umenu, Uinfolay, Ulaykeliling, Ulayluas;
procedure TForm24.Image2Click(Sender: TObject);
begin
Form25.Show;
end;
procedure TForm24.Image3Click(Sender: TObject);
begin
Form26.Show;
end;
procedure TForm24.Image4Click(Sender: TObject);
begin
Form27.Show;
end;
procedure TForm24.Image5Click(Sender: TObject);
begin
Form2.Show;
end;
end.