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

KryptonWrapLabelActionList() public method

Initialize a new instance of the KryptonWrapLabelActionList class.
public KryptonWrapLabelActionList ( KryptonWrapLabelDesigner owner ) : System
owner KryptonWrapLabelDesigner Designer that owns this action list instance.
return System
        public KryptonWrapLabelActionList(KryptonWrapLabelDesigner owner)
            : base(owner.Component)
        {
            // Remember the label instance
            _wrapLabel = owner.Component as KryptonWrapLabel;

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