-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathunit5.lfm
53 lines (53 loc) · 962 Bytes
/
unit5.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
object Form5: TForm5
Left = 233
Height = 76
Top = 112
Width = 320
BorderIcons = []
BorderStyle = bsSingle
Caption = 'Form5'
ClientHeight = 76
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 = TrackBar1Change
State = cbChecked
TabOrder = 0
end
object TrackBar1: TTrackBar
Left = 112
Height = 25
Top = 40
Width = 200
Min = 2
OnChange = TrackBar1Change
Position = 3
ShowSelRange = False
TickStyle = tsNone
TabOrder = 1
end
object Label2: TLabel
Left = 16
Height = 16
Top = 49
Width = 53
Caption = 'Strength'
ParentColor = False
end
end