-
Notifications
You must be signed in to change notification settings - Fork 25
/
mni.lfm
executable file
·66 lines (66 loc) · 1.5 KB
/
mni.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
object MNIForm: TMNIForm
Left = 333
Height = 27
Top = 225
Width = 337
HorzScrollBar.Page = 263
VertScrollBar.Page = 53
ActiveControl = XEdit
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
BorderWidth = 4
Caption = 'MNI position'
ClientHeight = 27
ClientWidth = 337
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.1.0.0'
object XEdit: TSpinEdit
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = Owner
AnchorSideTop.Side = asrCenter
Left = 8
Height = 21
Top = 3
Width = 80
BorderSpacing.Left = 4
Constraints.MinWidth = 80
MaxValue = 200
MinValue = -200
OnChange = XEditChange
TabOrder = 0
end
object YEdit: TSpinEdit
AnchorSideLeft.Control = XEdit
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = XEdit
AnchorSideTop.Side = asrCenter
Left = 92
Height = 21
Top = 3
Width = 80
BorderSpacing.Left = 4
Constraints.MinWidth = 80
MaxValue = 200
MinValue = -200
OnChange = XEditChange
TabOrder = 1
end
object ZEdit: TSpinEdit
AnchorSideLeft.Control = YEdit
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = XEdit
AnchorSideTop.Side = asrCenter
Left = 176
Height = 21
Top = 3
Width = 80
BorderSpacing.Left = 4
Constraints.MinWidth = 80
MaxValue = 200
MinValue = -200
OnChange = XEditChange
TabOrder = 2
end
end