FairyGUI.GComboBox.SetCurrentState C# (CSharp) Method

SetCurrentState() protected method

protected SetCurrentState ( ) : void
return void
        protected void SetCurrentState()
        {
            if (this.grayed && _buttonController != null && _buttonController.HasPage(GButton.DISABLED))
                SetState(GButton.DISABLED);
            else
                SetState(_over ? GButton.OVER : GButton.UP);
        }