-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit1.lfm
74 lines (74 loc) · 1.34 KB
/
unit1.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
70
71
72
73
74
object Form1: TForm1
Left = 1195
Height = 387
Top = 205
Width = 408
Caption = 'Nummer raten'
ClientHeight = 387
ClientWidth = 408
OnCreate = FormCreate
LCLVersion = '2.2.4.0'
object guessField: TEdit
Left = 128
Height = 23
Top = 168
Width = 133
OnChange = guessFieldChange
TabOrder = 0
TextHint = 'Hier Ratezahl eingeben!'
end
object result: TLabel
Left = 176
Height = 15
Top = 232
Width = 48
Caption = 'Ergebnis:'
ParentColor = False
OnClick = resultClick
end
object confirm: TButton
Left = 128
Height = 25
Top = 200
Width = 139
Caption = 'Bestätigen der Eingabe'
OnClick = confirmClick
TabOrder = 1
end
object ResetButton: TButton
Left = 160
Height = 25
Top = 64
Width = 75
Caption = 'Neues Spiel'
OnClick = ResetButtonClick
TabOrder = 2
end
object diff1: TRadioButton
Left = 56
Height = 19
Top = 24
Width = 52
Caption = 'Leicht'
OnChange = diff1Change
TabOrder = 3
end
object diff2: TRadioButton
Left = 160
Height = 19
Top = 24
Width = 51
Caption = 'Mittel'
OnChange = diff2Change
TabOrder = 4
end
object diff3: TRadioButton
Left = 264
Height = 19
Top = 24
Width = 58
Caption = 'Schwer'
OnChange = diff3Change
TabOrder = 5
end
end