Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of a TabItemCollection.
 /// </summary>
 public TabItemCollection() : base()
 {
     _Parent = null;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of a TabItemCollection.
 /// </summary>
 /// <param name="parent">The parent TabStrip of this collection.</param>
 public TabItemCollection(TabStrip parent) : base()
 {
     _Parent = parent;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Sets the parent of this item.
 /// </summary>
 /// <param name="parent">The parent TabStrip.</param>
 internal void SetParentTabStrip(TabStrip parent)
 {
     _Parent = parent;
 }