-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuProductInfo.dfm
189 lines (189 loc) · 3.76 KB
/
uProductInfo.dfm
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
object fProductInfo: TfProductInfo
Left = 0
Top = 0
Margins.Right = 50
BorderStyle = bsSingle
Caption = 'Produtos > Novo'
ClientHeight = 125
ClientWidth = 484
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poScreenCenter
OnActivate = FormActivate
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 16
Top = 32
Width = 44
Height = 18
Caption = 'Name:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label2: TLabel
Left = 25
Top = 56
Width = 35
Height = 18
Caption = 'Price:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label3: TLabel
Left = 316
Top = 56
Width = 40
Height = 18
Caption = 'Stock:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object Label4: TLabel
Left = 39
Top = 8
Width = 21
Height = 18
Caption = 'ID:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object btn_openStockControl: TSpeedButton
Left = 450
Top = 56
Width = 23
Height = 21
Hint = 'Edit stock value'
end
object Panel1: TPanel
Left = 0
Top = 84
Width = 484
Height = 41
Align = alBottom
TabOrder = 4
ExplicitLeft = 240
ExplicitTop = 208
ExplicitWidth = 185
object btn_save: TButton
Left = 8
Top = 8
Width = 75
Height = 25
Caption = 'Save'
TabOrder = 0
OnClick = btn_saveClick
end
object btn_close: TButton
Left = 89
Top = 8
Width = 75
Height = 25
Caption = 'Close'
TabOrder = 1
OnClick = btn_closeClick
end
end
object edit_name: TEdit
Left = 66
Top = 32
Width = 407
Height = 21
AutoSize = False
Ctl3D = False
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Tahoma'
Font.Style = []
MaxLength = 50
ParentCtl3D = False
ParentFont = False
TabOrder = 1
OnExit = edit_nameExit
end
object edit_price: TEdit
Left = 66
Top = 56
Width = 111
Height = 21
AutoSize = False
Ctl3D = False
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Tahoma'
Font.Style = []
MaxLength = 11
ParentCtl3D = False
ParentFont = False
TabOrder = 2
OnChange = edit_priceChange
OnKeyDown = edit_priceKeyDown
OnKeyPress = edit_priceKeyPress
end
object edit_stock: TEdit
Left = 360
Top = 56
Width = 87
Height = 21
TabStop = False
AutoSize = False
Ctl3D = False
Enabled = False
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Tahoma'
Font.Style = []
MaxLength = 11
ParentCtl3D = False
ParentFont = False
ReadOnly = True
TabOrder = 3
end
object edit_id: TEdit
Left = 66
Top = 8
Width = 39
Height = 21
TabStop = False
AutoSize = False
Ctl3D = False
Enabled = False
Font.Charset = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -14
Font.Name = 'Tahoma'
Font.Style = [fsItalic]
MaxLength = 6
ParentCtl3D = False
ParentFont = False
ReadOnly = True
TabOrder = 0
end
end