ComponentFactory.Krypton.Toolkit.KryptonColorButtonActionList.KryptonColorButtonActionList C# (CSharp) Method

KryptonColorButtonActionList() public method

Initialize a new instance of the KryptonColorButtonActionList class.
public KryptonColorButtonActionList ( KryptonColorButtonDesigner owner ) : System
owner KryptonColorButtonDesigner Designer that owns this action list instance.
return System
        public KryptonColorButtonActionList(KryptonColorButtonDesigner owner)
            : base(owner.Component)
        {
            // Remember the button instance
            _colorButton = owner.Component as KryptonColorButton;

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }