You've already forked lazarus-ccr
149 lines
2.7 KiB
Plaintext
149 lines
2.7 KiB
Plaintext
![]() |
object CorSimFrm: TCorSimFrm
|
||
|
Left = 154
|
||
|
Height = 437
|
||
|
Top = 108
|
||
|
Width = 764
|
||
|
Caption = 'Correlation Simulation'
|
||
|
ClientHeight = 437
|
||
|
ClientWidth = 764
|
||
|
OnShow = FormShow
|
||
|
LCLVersion = '0.9.28.2'
|
||
|
object Image1: TImage
|
||
|
Left = 0
|
||
|
Height = 388
|
||
|
Top = 0
|
||
|
Width = 764
|
||
|
Align = alClient
|
||
|
end
|
||
|
object Panel1: TPanel
|
||
|
Left = 0
|
||
|
Height = 49
|
||
|
Top = 388
|
||
|
Width = 764
|
||
|
Align = alBottom
|
||
|
ClientHeight = 49
|
||
|
ClientWidth = 764
|
||
|
TabOrder = 0
|
||
|
object Label1: TLabel
|
||
|
Left = 7
|
||
|
Height = 14
|
||
|
Top = 18
|
||
|
Width = 40
|
||
|
Caption = 'Mean X:'
|
||
|
ParentColor = False
|
||
|
end
|
||
|
object Label2: TLabel
|
||
|
Left = 104
|
||
|
Height = 14
|
||
|
Top = 18
|
||
|
Width = 40
|
||
|
Caption = 'Mean Y:'
|
||
|
ParentColor = False
|
||
|
end
|
||
|
object Label3: TLabel
|
||
|
Left = 208
|
||
|
Height = 14
|
||
|
Top = 18
|
||
|
Width = 50
|
||
|
Caption = 'Std.Dev.X'
|
||
|
ParentColor = False
|
||
|
end
|
||
|
object Label4: TLabel
|
||
|
Left = 320
|
||
|
Height = 14
|
||
|
Top = 18
|
||
|
Width = 50
|
||
|
Caption = 'Std.Dev.Y'
|
||
|
ParentColor = False
|
||
|
end
|
||
|
object Label5: TLabel
|
||
|
Left = 425
|
||
|
Height = 14
|
||
|
Top = 18
|
||
|
Width = 34
|
||
|
Caption = 'Cor.XY'
|
||
|
ParentColor = False
|
||
|
end
|
||
|
object Label6: TLabel
|
||
|
Left = 520
|
||
|
Height = 14
|
||
|
Top = 20
|
||
|
Width = 34
|
||
|
Caption = 'N Size:'
|
||
|
ParentColor = False
|
||
|
end
|
||
|
object MeanX: TEdit
|
||
|
Left = 50
|
||
|
Height = 21
|
||
|
Top = 13
|
||
|
Width = 43
|
||
|
OnKeyPress = MeanXKeyPress
|
||
|
TabOrder = 0
|
||
|
Text = 'MeanX'
|
||
|
end
|
||
|
object MeanY: TEdit
|
||
|
Left = 152
|
||
|
Height = 21
|
||
|
Top = 13
|
||
|
Width = 46
|
||
|
OnKeyPress = MeanYKeyPress
|
||
|
TabOrder = 1
|
||
|
Text = 'MeanY'
|
||
|
end
|
||
|
object SDX: TEdit
|
||
|
Left = 262
|
||
|
Height = 21
|
||
|
Top = 13
|
||
|
Width = 50
|
||
|
OnKeyPress = SDXKeyPress
|
||
|
TabOrder = 2
|
||
|
Text = 'SDX'
|
||
|
end
|
||
|
object SDY: TEdit
|
||
|
Left = 376
|
||
|
Height = 21
|
||
|
Top = 13
|
||
|
Width = 39
|
||
|
OnKeyPress = SDYKeyPress
|
||
|
TabOrder = 3
|
||
|
Text = 'SDY'
|
||
|
end
|
||
|
object Corr: TEdit
|
||
|
Left = 464
|
||
|
Height = 21
|
||
|
Top = 12
|
||
|
Width = 44
|
||
|
OnKeyPress = CorrKeyPress
|
||
|
TabOrder = 4
|
||
|
Text = 'Corr'
|
||
|
end
|
||
|
object ComputeBtn: TButton
|
||
|
Left = 616
|
||
|
Height = 26
|
||
|
Top = 13
|
||
|
Width = 65
|
||
|
Caption = 'Compute'
|
||
|
OnClick = ComputeBtnClick
|
||
|
TabOrder = 5
|
||
|
end
|
||
|
object ReturnBtn: TButton
|
||
|
Left = 688
|
||
|
Height = 26
|
||
|
Top = 12
|
||
|
Width = 66
|
||
|
Caption = 'Return'
|
||
|
ModalResult = 1
|
||
|
TabOrder = 6
|
||
|
end
|
||
|
object Nobs: TEdit
|
||
|
Left = 560
|
||
|
Height = 21
|
||
|
Top = 13
|
||
|
Width = 40
|
||
|
OnKeyPress = NobsKeyPress
|
||
|
TabOrder = 7
|
||
|
Text = 'Nobs'
|
||
|
end
|
||
|
end
|
||
|
end
|