ComponentFactory.Krypton.Toolkit.PaletteRedirectCommon.GetBackColor1 C# (CSharp) Méthode

GetBackColor1() public méthode

Gets the first background color.
public GetBackColor1 ( PaletteBackStyle style, PaletteState state ) : Color
style PaletteBackStyle Background style.
state PaletteState Palette value should be applicable to this state.
Résultat Color
        public override Color GetBackColor1(PaletteBackStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);
            if (inherit != null)
                return inherit.PaletteBack.GetBackColor1(state);
            else
                return base.GetBackColor1(style, state);
        }