-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathname.lfm
69 lines (69 loc) · 1.35 KB
/
name.lfm
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
object NameForm: TNameForm
Left = 761
Height = 102
Top = 354
Width = 263
ActiveControl = CancelButton
BorderIcons = []
BorderStyle = bsNone
Caption = 'Name'
ClientHeight = 102
ClientWidth = 263
PopupMode = pmExplicit
Position = poMainFormCenter
ShowInTaskBar = stNever
LCLVersion = '1.8.2.0'
object Panel1: TPanel
Left = 0
Height = 102
Top = 0
Width = 263
Align = alClient
BevelInner = bvSpace
BorderWidth = 1
ClientHeight = 102
ClientWidth = 263
TabOrder = 0
object OKButton: TButton
Left = 185
Height = 25
Top = 68
Width = 75
Caption = 'OK'
OnClick = OKButtonClick
TabOrder = 0
end
object Label1: TLabel
Left = 3
Height = 30
Top = 3
Width = 257
Align = alTop
Alignment = taCenter
AutoSize = False
Caption = 'Bitte Name eingeben:'
Font.Height = 30
ParentColor = False
ParentFont = False
end
object NameEdit: TEdit
Left = 3
Height = 23
Top = 33
Width = 257
Align = alTop
MaxLength = 64
OnKeyPress = NameEditKeyPress
TabOrder = 1
end
object CancelButton: TButton
Left = 3
Height = 25
Top = 68
Width = 75
Caption = 'abbrechen'
OnClick = CancelButtonClick
TabOrder = 2
end
end
end