ARKBreedingStats.Form1.button2TamingCalc_Click C# (CSharp) 메소드

button2TamingCalc_Click() 개인적인 메소드

private button2TamingCalc_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void button2TamingCalc_Click(object sender, EventArgs e)
        {
            if (checkBoxQuickWildCheck.Checked)
                tamingControl1.level = statIOs[7].LevelWild + 1;
            else
                tamingControl1.level = (int)numericUpDownLevel.Value;
            tamingControl1.selectedSpeciesIndex = comboBoxSpeciesExtractor.SelectedIndex;
            tabControlMain.SelectedTab = tabPageTaming;
        }
Form1