-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings.lfm
executable file
·71 lines (71 loc) · 1.32 KB
/
Settings.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
object SettingsForm: TSettingsForm
Left = 1140
Height = 139
Top = 196
Width = 168
BorderStyle = bsDialog
Caption = 'Settings'
ClientHeight = 139
ClientWidth = 168
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
LCLVersion = '1.4.0.2'
object Label1: TLabel
Left = 8
Height = 13
Top = 8
Width = 125
Caption = 'Cpu run Step Interval:'
ParentColor = False
end
object Label2: TLabel
Left = 8
Height = 13
Top = 56
Width = 75
Caption = 'Memory size:'
ParentColor = False
end
object SpinEdit1: TSpinEdit
Left = 8
Height = 19
Top = 24
Width = 105
MaxValue = 100000
MinValue = 10
TabOrder = 0
Value = 10
end
object SpinEdit2: TSpinEdit
Left = 8
Height = 19
Top = 72
Width = 105
Increment = 16
MaxValue = 65536
MinValue = 16
TabOrder = 1
Value = 2048
end
object Button1: TButton
Left = 88
Height = 25
Top = 104
Width = 75
Caption = 'O.K.'
Default = True
OnClick = Button1Click
TabOrder = 2
end
object Button2: TButton
Left = 8
Height = 25
Top = 104
Width = 75
Caption = 'Cancel'
OnClick = Button2Click
TabOrder = 3
end
end