Пример #1
0
        }//End of myTabControl_MouseUp

        /// <summary>
        /// 탭페이지 꺼내기
        /// </summary>
        private void DivideTabPage()
        {
            if (TabPages.Count <= 0)
            {
                return;
            }
            if (this.SelectedTab == null)
            {
                this.SelectedTab = this.TabPages[0];
            }
            frmTabContainer container = new frmTabContainer(this.SelectedTab, this);

            container.Show();
        }
Пример #2
0
 /// <summary>
 /// �������� ������
 /// </summary>
 private void DivideTabPage()
 {
     if (TabPages.Count<=0)
       {
       return;
       }
       if (this.SelectedTab==null)
       {
       this.SelectedTab = this.TabPages[0];
       }
       frmTabContainer container = new frmTabContainer(this.SelectedTab,this);
       container.Show();
 }