ComponentFactory.Krypton.Ribbon.KryptonRibbonActionList.KryptonRibbonActionList C# (CSharp) Method

KryptonRibbonActionList() public method

Initialize a new instance of the KryptonRibbonActionList class.
public KryptonRibbonActionList ( KryptonRibbonDesigner owner ) : System
owner KryptonRibbonDesigner Designer that owns this action list instance.
return System
        public KryptonRibbonActionList(KryptonRibbonDesigner owner)
            : base(owner.Component)
        {
            // Remember the ribbon instance
            _ribbon = (KryptonRibbon)owner.Component;

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