-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpin.lfm
More file actions
75 lines (75 loc) · 1.52 KB
/
pin.lfm
File metadata and controls
75 lines (75 loc) · 1.52 KB
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
object PINForm: TPINForm
Left = 885
Height = 102
Top = 376
Width = 263
ActiveControl = PINEdit
AlphaBlend = True
BorderIcons = []
BorderStyle = bsNone
BorderWidth = 1
Caption = 'PIN'
ClientHeight = 102
ClientWidth = 263
FormStyle = fsStayOnTop
PopupMode = pmExplicit
Position = poMainFormCenter
ShowInTaskBar = stNever
LCLVersion = '1.8.2.0'
object Panel1: TPanel
Left = 1
Height = 100
Top = 1
Width = 261
Align = alClient
BevelInner = bvSpace
BorderWidth = 1
ClientHeight = 100
ClientWidth = 261
TabOrder = 0
object OKButton: TButton
Left = 92
Height = 25
Top = 68
Width = 75
Align = alCustom
Caption = 'OK'
OnClick = OKButtonClick
TabOrder = 0
end
object PINEdit: TMaskEdit
Left = 3
Height = 31
Top = 33
Width = 255
Align = alTop
Alignment = taCenter
CharCase = ecNormal
Font.Height = 24
Font.Pitch = fpFixed
MaxLength = 4
ParentFont = False
TabOrder = 1
OnClick = PINEditClick
OnEnter = PINEditEnter
OnKeyPress = PINEditKeyPress
EditMask = '0000;0;*'
SpaceChar = '*'
end
object Label1: TLabel
Left = 3
Height = 30
Top = 3
Width = 255
Align = alTop
Alignment = taCenter
AutoSize = False
Caption = 'Bitte PIN eingeben:'
Font.Height = 30
Layout = tlCenter
ParentColor = False
ParentFont = False
OptimalFill = True
end
end
end