Condividi tramite


Procedura: aggiungere un controllo a un oggetto TabPage

Aggiornamento: novembre 2007

È possibile utilizzare il controllo TabControl Windows Form per visualizzare altri controlli in modo organizzato. Nella procedura riportata di seguito viene illustrato come visualizzare un'immagine nella parte principale della pagina di una scheda. Per informazioni sull'aggiunta di un'icona alla parte dell'etichetta di una pagina della scheda, vedere Procedura: modificare l'aspetto del controllo TabControl Windows Form.

Per aggiungere un controllo a livello di codice

  • Utilizzare il metodo Add dell'insieme restituito dalla proprietà Controls di TabPage:

    ' Assuming that TabControl1 exists and has at least one tab page
    ' Add a button to the first tab page
    TabPage1.Controls.Add(New Button())
    
    // Assuming that tabControl1 exists and has at least one tab page
    // Add a button to the first tab page
    tabPage1.Controls.Add(new Button());
    
    // Assuming that tabControl1 exists and has at least one tab page
    // Add a button to the first tab page
    tabPage1.get_Controls().Add(new Button());
    
    // Assuming that tabControl1 exists and has at least one tab page
    // Add a button to the first tab page
    tabPage1->Controls->Add(gcnew Button());
    

Vedere anche

Attività

Procedura: modificare l'aspetto del controllo TabControl Windows Form

Procedura: disattivare le schede

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

Riferimenti

Cenni preliminari sul controllo TabControl (Windows Form)

Altre risorse

Controllo TabControl (Windows Form)