/// <summary> /// Creates a new RibbonTab /// </summary> public RibbonTab(Ribbon owner, string text) { _panels = new RibbonPanelCollection(owner, this); _text = text; }
/// <summary> /// Sets the Ribbon that owns this item /// </summary> /// <param name="owner">Ribbon that owns this item</param> internal virtual void SetOwner(Ribbon owner) { _owner = owner; }
/// <summary> /// Sets the value of the Owner Property /// </summary> internal void SetOwner(Ribbon owner) { _owner = owner; Panels.SetOwner(owner); }
public RibbonOrbAdornerGlyph(BehaviorService behaviorService, RibbonDesigner designer, Ribbon ribbon) : base(new RibbonOrbAdornerGlyphBehavior()) { _behaviorService = behaviorService; _componentDesigner = designer; _ribbon = ribbon; }