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

KryptonListBoxActionList() public method

Initialize a new instance of the KryptonListBoxActionList class.
public KryptonListBoxActionList ( KryptonListBoxDesigner owner ) : System
owner KryptonListBoxDesigner Designer that owns this action list instance.
return System
        public KryptonListBoxActionList(KryptonListBoxDesigner owner)
            : base(owner.Component)
        {
            // Remember the list box instance
            _listBox = owner.Component as KryptonListBox;

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