Esempio n. 1
0
        public TabStrip(ProjectProperties control)
        {
            this.SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint
                     | ControlStyles.DoubleBuffer
                     | ControlStyles.SupportsTransparentBackColor, true);

            this.m_Items = new TabItemCollection(control);

            this.BackColor = Color.Transparent;
        }
Esempio n. 2
0
 /// <summary>
 /// TabItemCollection Constructor
 /// </summary>
 /// <param name="parent"></param>
 public TabItemCollection(ProjectProperties parent)
 {
     this.m_Items = new ArrayList();
     this.m_Parent = parent;
 }
Esempio n. 3
0
 /// <summary>
 /// TabItemCollection Constructor
 /// </summary>
 /// <param name="parent"></param>
 public TabItemCollection(ProjectProperties parent)
 {
     this.m_Items  = new ArrayList();
     this.m_Parent = parent;
 }