ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.GetDoubleState C# (CSharp) 메소드

GetDoubleState() 개인적인 메소드

private GetDoubleState ( ) : IPaletteDouble
리턴 IPaletteDouble
        private IPaletteDouble GetDoubleState()
        {
            if (Enabled)
            {
                if (IsActive)
                    return _stateActive;
                else
                    return _stateNormal;
            }
            else
                return _stateDisabled;
        }
KryptonCheckedListBox