Exemplo n.º 1
0
 /// <summary>
 /// Creates a new RibbonTab
 /// </summary>
 public RibbonTab(Ribbon owner, string text)
 {
     _panels = new RibbonPanelCollection(owner, this);
     _text   = text;
 }
Exemplo n.º 2
0
 /// <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;
 }
Exemplo n.º 3
0
        /// <summary>
        /// Sets the value of the Owner Property
        /// </summary>
        internal void SetOwner(Ribbon owner)
        {
            _owner = owner;

            Panels.SetOwner(owner);
        }
Exemplo n.º 4
0
 public RibbonOrbAdornerGlyph(BehaviorService behaviorService, RibbonDesigner designer, Ribbon ribbon)
     : base(new RibbonOrbAdornerGlyphBehavior())
 {
     _behaviorService   = behaviorService;
     _componentDesigner = designer;
     _ribbon            = ribbon;
 }