PKHeX.SAV_PokedexORAS.Setup C# (CSharp) Method

Setup() private method

private Setup ( ) : void
return void
        private void Setup()
        {
            // Clear Listbox and ComboBox
            LB_Species.Items.Clear();
            CB_Species.Items.Clear();

            // Fill List
            #region Species
            {
                var species_list = Util.getCBList(Form1.specieslist, null);
                species_list.RemoveAt(0); // Remove 0th Entry
                CB_Species.DisplayMember = "Text";
                CB_Species.ValueMember = "Value";
                CB_Species.DataSource = species_list;
            }
            #endregion

            for (int i = 1; i < Form1.specieslist.Length; i++)
                LB_Species.Items.Add(i.ToString("000") + " - " + Form1.specieslist[i]);

            getBools();
        }
        private void changeCBSpecies(object sender, EventArgs e)