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

KryptonDomainUpDownActionList() public method

Initialize a new instance of the KryptonDomainUpDownActionList class.
public KryptonDomainUpDownActionList ( KryptonDomainUpDownDesigner owner ) : System
owner KryptonDomainUpDownDesigner Designer that owns this action list instance.
return System
        public KryptonDomainUpDownActionList(KryptonDomainUpDownDesigner owner)
            : base(owner.Component)
        {
            // Remember the text box instance
            _domainUpDown = owner.Component as KryptonDomainUpDown;

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