-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathunit4.lfm
74 lines (74 loc) · 1.38 KB
/
unit4.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 Form4: TForm4
Left = 233
Height = 110
Top = 212
Width = 320
BorderIcons = []
BorderStyle = bsSingle
Caption = 'Form4'
ClientHeight = 110
ClientWidth = 320
FormStyle = fsStayOnTop
OnCreate = FormCreate
OnDestroy = FormDestroy
LCLVersion = '2.1.0.0'
object Label1: TLabel
Left = 16
Height = 16
Top = 16
Width = 49
Caption = 'Activate'
ParentColor = False
end
object CheckBox1: TCheckBox
Left = 112
Height = 22
Top = 16
Width = 22
Checked = True
OnChange = CheckBox1Change
State = cbChecked
TabOrder = 0
end
object TrackBar1: TTrackBar
Left = 112
Height = 25
Top = 40
Width = 200
Max = 500
Min = 25
OnChange = CheckBox1Change
Position = 100
ShowSelRange = False
TickStyle = tsNone
TabOrder = 1
end
object Label2: TLabel
Left = 16
Height = 16
Top = 49
Width = 53
Caption = 'Strength'
ParentColor = False
end
object TrackBar2: TTrackBar
Left = 112
Height = 25
Top = 78
Width = 200
Max = 200
OnChange = CheckBox1Change
Position = 200
ShowSelRange = False
TickStyle = tsNone
TabOrder = 2
end
object Label3: TLabel
Left = 16
Height = 16
Top = 87
Width = 55
Caption = 'Maxlevel'
ParentColor = False
end
end