예제 #1
0
파일: AccountForm.cs 프로젝트: fiftin/oblqo
        private void driveTabControl_Selecting(object sender, TabControlCancelEventArgs e)
        {
            if (e.TabPage != addDriveTabPage)
            {
                return;
            }
            var tab = new DriveAccountTabPage();

            driveTabControl.TabPages.Insert(driveTabControl.TabPages.Count - 1, tab);
            driveTabControl.SelectedTab = tab;
        }
예제 #2
0
파일: AccountForm.cs 프로젝트: fiftin/oblqo
 private void driveTabControl_Selecting(object sender, TabControlCancelEventArgs e)
 {
     if (e.TabPage != addDriveTabPage)
     {
         return;
     }
     var tab = new DriveAccountTabPage();
     driveTabControl.TabPages.Insert(driveTabControl.TabPages.Count - 1, tab);
     driveTabControl.SelectedTab = tab;
 }