ComponentFactory.Krypton.Ribbon.PaletteRibbonContextDouble.GetRibbonBackColor3 C# (CSharp) 메소드

GetRibbonBackColor3() 공개 메소드

Gets the third background color for the ribbon item.
public GetRibbonBackColor3 ( PaletteState state ) : Color
state PaletteState Palette value should be applicable to this state.
리턴 Color
        public Color GetRibbonBackColor3(PaletteState state)
        {
            Color retColor = _inherit.GetRibbonBackColor3(state);

            // If empty then try and recover the context specific color
            if (retColor == Color.Empty)
                retColor = CheckForContextColor(state);

            return retColor;
        }