예제 #1
0
파일: RibbonTab.cs 프로젝트: radtek/dms
 /// <summary>
 /// Creates a new RibbonTab
 /// </summary>
 public RibbonTab(Ribbon owner, string text)
 {
     _panels = new RibbonPanelCollection(owner, this);
     _text   = text;
 }
예제 #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;
 }
예제 #3
0
파일: RibbonTab.cs 프로젝트: radtek/dms
        /// <summary>
        /// Sets the value of the Owner Property
        /// </summary>
        internal void SetOwner(Ribbon owner)
        {
            _owner = owner;

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