ComponentFactory.Krypton.Toolkit.KryptonLinkLabel.SetFixedState C# (CSharp) Method

SetFixedState() public method

Fix the control to a particular palette state.
public SetFixedState ( PaletteState state ) : void
state PaletteState Palette state to fix.
return void
        public override void SetFixedState(PaletteState state)
        {
            // Let base class update state
            base.SetFixedState(state);

            // Update display to reflect change
            _controller.Update(this);
            PerformNeedPaint(true);
        }