PKHeX.Form1.clickPPUps C# (CSharp) Method

clickPPUps() private method

private clickPPUps ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void clickPPUps(object sender, EventArgs e)
        {
            CB_PPu1.SelectedIndex = (ModifierKeys != Keys.Control && Util.getIndex(CB_Move1) > 0) ? 3 : 0;
            CB_PPu2.SelectedIndex = (ModifierKeys != Keys.Control && Util.getIndex(CB_Move2) > 0) ? 3 : 0;
            CB_PPu3.SelectedIndex = (ModifierKeys != Keys.Control && Util.getIndex(CB_Move3) > 0) ? 3 : 0;
            CB_PPu4.SelectedIndex = (ModifierKeys != Keys.Control && Util.getIndex(CB_Move4) > 0) ? 3 : 0;
        }
        private void clickMarking(object sender, EventArgs e)
Form1