-
Notifications
You must be signed in to change notification settings - Fork 0
/
Uinling.pas
56 lines (44 loc) · 1.04 KB
/
Uinling.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 Uinling;
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
TForm32 = class(TForm)
Image1: TImage;
Image2: TImage;
Image3: TImage;
Image4: TImage;
Image5: TImage;
procedure Image2Click(Sender: TObject);
procedure Image3Click(Sender: TObject);
procedure Image5Click(Sender: TObject);
procedure Image4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form32: TForm32;
implementation
{$R *.fmx}
{$R *.LgXhdpiPh.fmx ANDROID}
uses Umenu, Uinfoling, Ulingkeliling, Ulingluas;
procedure TForm32.Image2Click(Sender: TObject);
begin
Form33.Show;
end;
procedure TForm32.Image3Click(Sender: TObject);
begin
Form34.Show;
end;
procedure TForm32.Image4Click(Sender: TObject);
begin
Form35.Show;
end;
procedure TForm32.Image5Click(Sender: TObject);
begin
Form2.Show;
end;
end.