Condividi tramite


Procedura: aggiungere e rimuovere schede tramite il controllo TabControl Windows Form

Aggiornamento: novembre 2007

Per impostazione predefinita, un controllo TabControl contiene due controlli TabPage. È possibile accedere a queste schede mediante la proprietà TabPages.

Per aggiungere una scheda a livello di codice

  • Utilizzare il metodo Add della proprietà TabPages.

    Dim myTabPage As New TabPage()
    myTabPage.Text = "TabPage" & (TabControl1.TabPages.Count + 1)
    TabControl1.TabPages.Add(myTabPage)
    
    string title = "TabPage " + (tabControl1.TabCount + 1).ToString();
    TabPage myTabPage = new TabPage(title);
    tabControl1.TabPages.Add(myTabPage);
    
    String title = "TabPage " + (tabControl1.get_TabCount() + 1);
    TabPage myTabPage = new TabPage(title);
    tabControl1.get_TabPages().Add(myTabPage);
    
    String^ title = String::Concat("TabPage ",
       (tabControl1->TabCount + 1).ToString());
    TabPage^ myTabPage = gcnew TabPage(title);
    tabControl1->TabPages->Add(myTabPage);
    

Per rimuovere una scheda a livello di codice

  • Per rimuovere le schede selezionate, utilizzare il metodo Remove della proprietà TabPages.

    -oppure-

  • Per rimuovere tutte le schede, utilizzare il metodo Clear della proprietà TabPages.

    ' Removes the selected tab:
    TabControl1.TabPages.Remove(TabControl1.SelectedTab)
    ' Removes all the tabs:
    TabControl1.TabPages.Clear()
    
    // Removes the selected tab:
    tabControl1.TabPages.Remove(tabControl1.SelectedTab);
    // Removes all the tabs:
    tabControl1.TabPages.Clear();
    
    // Removes the selected tab:
    tabControl1.get_TabPages().Remove(tabControl1.get_SelectedTab());
    // Removes all the tabs:
    tabControl1.get_TabPages().Clear();
    
    // Removes the selected tab:
    tabControl1->TabPages->Remove(tabControl1->SelectedTab);
    // Removes all the tabs:
    tabControl1->TabPages->Clear();
    

Vedere anche

Attività

Procedura: aggiungere un controllo a un oggetto TabPage

Procedura: disattivare le schede

Procedura: modificare l'aspetto del controllo TabControl Windows Form

Riferimenti

Cenni preliminari sul controllo TabControl (Windows Form)