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

KryptonCheckedListBoxActionList() public method

Initialize a new instance of the KryptonCheckedListBoxActionList class.
public KryptonCheckedListBoxActionList ( KryptonCheckedListBoxDesigner owner ) : System
owner KryptonCheckedListBoxDesigner Designer that owns this action list instance.
return System
        public KryptonCheckedListBoxActionList(KryptonCheckedListBoxDesigner owner)
            : base(owner.Component)
        {
            // Remember the list box instance
            _checkedListBox = owner.Component as KryptonCheckedListBox;

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