entity.MetaEditor2.Indices.comboBox1_DropDown C# (CSharp) Method

comboBox1_DropDown() private method

private comboBox1_DropDown ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void comboBox1_DropDown(object sender, EventArgs e)
        {
            //if (tempvalue.Count != ((ComboBox)sender).Items.Count)
            UpdateSelectionList(true);
            try
            {
                this.comboBox1.SelectedIndex = this.Value;
            }
            catch
            {
            }
        }