예제 #1
0
파일: TabStrip.cs 프로젝트: Myvar/Eclang
        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;
        }
예제 #2
0
 /// <summary>
 /// TabItemCollection Constructor
 /// </summary>
 /// <param name="parent"></param>
 public TabItemCollection(ProjectProperties parent)
 {
     this.m_Items = new ArrayList();
     this.m_Parent = parent;
 }
예제 #3
0
 /// <summary>
 /// TabItemCollection Constructor
 /// </summary>
 /// <param name="parent"></param>
 public TabItemCollection(ProjectProperties parent)
 {
     this.m_Items  = new ArrayList();
     this.m_Parent = parent;
 }