forked from peardox/MakeP4DComponents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConfirmForm.fmx
56 lines (56 loc) · 1.55 KB
/
ConfirmForm.fmx
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
object frmConfirm: TfrmConfirm
Left = 0
Top = 0
BorderIcons = []
BorderStyle = Single
Caption = 'Confirm'
ClientHeight = 180
ClientWidth = 432
Position = OwnerFormCenter
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
DesignerMasterStyle = 0
object lblPrompt: TLabel
Align = Client
StyledSettings = [Family, FontColor]
Margins.Left = 8.000000000000000000
Margins.Top = 8.000000000000000000
Margins.Right = 8.000000000000000000
Margins.Bottom = 8.000000000000000000
Size.Width = 416.000000000000000000
Size.Height = 132.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Size = 16.000000000000000000
TextSettings.Font.StyleExt = {00070000000000000004000000}
TextSettings.HorzAlign = Center
Text = 'lblPrompt'
TabOrder = 2
end
object Panel1: TPanel
Align = Bottom
Position.Y = 148.000000000000000000
Size.Width = 432.000000000000000000
Size.Height = 32.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object btnYes: TButton
Anchors = [akTop, akRight]
Position.X = 329.000000000000000000
Position.Y = 6.000000000000000000
Size.Width = 96.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Text = 'Yes'
OnClick = btnYesClick
end
object btnNo: TButton
Position.X = 8.000000000000000000
Position.Y = 6.000000000000000000
TabOrder = 1
Text = 'No'
OnClick = btnNoClick
end
end
end