Analysis.PLS.MainForm.DataAnalyzer_Load C# (CSharp) Method

DataAnalyzer_Load() private method

private DataAnalyzer_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void DataAnalyzer_Load(object sender, EventArgs e)
        {
            Array methods = Enum.GetValues(typeof(AnalysisMethod));
            Array algorithms = Enum.GetValues(typeof(PartialLeastSquaresAlgorithm));

            this.cbMethod.DataSource = methods;
            this.cbAlgorithm.DataSource = algorithms;
        }