Canguro.Commands.Model.AnalysisOptionsDialog.AnalyzeButton_Click C# (CSharp) Method

AnalyzeButton_Click() private method

private AnalyzeButton_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void AnalyzeButton_Click(object sender, EventArgs e)
        {
            if (currentDesignOptions == null) // All options are set
            {
                DialogResult = DialogResult.OK;
            }
            else
            {
                wizardControl.SelectTab(1);
                updateDesignCombosPage();
                DialogResult = DialogResult.None;
            }
        }