-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCONFIGINI.fmx
110 lines (110 loc) · 3.33 KB
/
CONFIGINI.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
object INI: TINI
Left = 0
Top = 0
Caption = 'Configurador INI'
ClientHeight = 480
ClientWidth = 456
Position = ScreenCenter
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
OnCreate = FormCreate
OnClose = FormClose
DesignerMasterStyle = 0
object tvINI: TTreeView
Align = Client
Size.Width = 456.000000000000000000
Size.Height = 406.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
OnClick = tvINIClick
Viewport.Width = 452.000000000000000000
Viewport.Height = 402.000000000000000000
end
object pnlTop: TPanel
Align = Top
Size.Width = 456.000000000000000000
Size.Height = 74.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
object btnAdicionar: TButton
Position.X = 296.000000000000000000
Position.Y = 42.000000000000000000
Size.Width = 73.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
Text = 'Adicionar'
OnClick = btnAdicionarClick
end
object edtVCL: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 3
Position.X = 8.000000000000000000
Position.Y = 42.000000000000000000
Size.Width = 129.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TextPrompt = 'VCL'
end
object edtFMX: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 2
Position.X = 160.000000000000000000
Position.Y = 42.000000000000000000
Size.Width = 129.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TextPrompt = 'FMX'
end
object lbEqual: TLabel
Position.X = 144.000000000000000000
Position.Y = 42.000000000000000000
Size.Width = 17.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = '='
TabOrder = 4
end
object btnRemover: TButton
Position.X = 376.000000000000000000
Position.Y = 42.000000000000000000
Size.Width = 73.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Text = 'Remover'
OnClick = btnRemoverClick
end
object btnSalvar: TButton
Position.X = 376.000000000000000000
Position.Y = 10.000000000000000000
Size.Width = 72.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 5
Text = 'Salvar'
OnClick = btnSalvarClick
end
object btnAbrir: TButton
Position.X = 296.000000000000000000
Position.Y = 10.000000000000000000
Size.Width = 72.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 6
Text = 'Abrir'
OnClick = btnAbrirClick
end
object edtINI: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
TabOrder = 7
Position.X = 8.000000000000000000
Position.Y = 10.000000000000000000
Size.Width = 281.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TextPrompt = 'Arquivo'
end
end
end