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

KryptonCheckBoxActionList() public method

Initialize a new instance of the KryptonCheckBoxActionList class.
public KryptonCheckBoxActionList ( KryptonCheckBoxDesigner owner ) : System
owner KryptonCheckBoxDesigner Designer that owns this action list instance.
return System
        public KryptonCheckBoxActionList(KryptonCheckBoxDesigner owner)
            : base(owner.Component)
        {
            // Remember the checkbox instance
            _checkBox = owner.Component as KryptonCheckBox;

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