ComponentFactory.Krypton.Toolkit.PaletteRedirectTriple.GetContentShortTextColor1 C# (CSharp) Метод

GetContentShortTextColor1() публичный Метод

Gets the first back color for the short text.
public GetContentShortTextColor1 ( PaletteContentStyle style, PaletteState state ) : Color
style PaletteContentStyle Content style.
state PaletteState Palette value should be applicable to this state.
Результат Color
        public override Color GetContentShortTextColor1(PaletteContentStyle style, PaletteState state)
        {
            IPaletteTriple inherit = GetInherit(state);

            if (inherit != null)
                return inherit.PaletteContent.GetContentShortTextColor1(state);
            else
                return Target.GetContentShortTextColor1(style, state);
        }
PaletteRedirectTriple