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

KryptonPanelActionList() public method

Initialize a new instance of the KryptonPanelActionList class.
public KryptonPanelActionList ( KryptonPanelDesigner owner ) : System
owner KryptonPanelDesigner Designer that owns this action list instance.
return System
        public KryptonPanelActionList(KryptonPanelDesigner owner)
            : base(owner.Component)
        {
            // Remember the panel instance
            _panel = owner.Component as KryptonPanel;

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