Analysis.KPCA.MainForm.MainForm_Load C# (CSharp) Method

MainForm_Load() private method

private MainForm_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void MainForm_Load(object sender, EventArgs e)
        {
            Array methods = Enum.GetValues(typeof(AnalysisMethod));
            this.tscbMethod.ComboBox.DataSource = methods;
            this.cbMethod.DataSource = methods;

            this.tscbMethod.SelectedItem = AnalysisMethod.Standardize;
            this.cbMethod.SelectedItem = AnalysisMethod.Standardize;
        }