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

KryptonHeaderActionList() public method

Initialize a new instance of the KryptonHeaderActionList class.
public KryptonHeaderActionList ( KryptonHeaderDesigner owner ) : System
owner KryptonHeaderDesigner Designer that owns this action list instance.
return System
        public KryptonHeaderActionList(KryptonHeaderDesigner owner)
            : base(owner.Component)
        {
            // Remember the header instance
            _header = owner.Component as KryptonHeader;

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