SampleApp.MainForm.btnRun_Click C# (CSharp) 메소드

btnRun_Click() 개인적인 메소드

Determines which radio button is selected and calls the appropriate algorithm.
private btnRun_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
리턴 void
        private void btnRun_Click(object sender, EventArgs e)
        {
            if (radioClusters.Checked)
                runKMeans();
            else 
                runMeanShift();
        }

Same methods

MainForm::btnRun_Click ( object sender, System e ) : void
MainForm