ComponentFactory.Krypton.Toolkit.KryptonCheckButton.OnKryptonCommandChanged C# (CSharp) Method

OnKryptonCommandChanged() protected method

Raises the KryptonCommandChanged event.
protected OnKryptonCommandChanged ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
return void
        protected override void OnKryptonCommandChanged(EventArgs e)
        {
            // Let base class update with base button properties
            base.OnKryptonCommandChanged(e);

            // Update the check button specific properties from the command
            if (KryptonCommand != null)
                Checked = KryptonCommand.Checked;
        }