如何:将控件添加到选项卡页

更新:2007 年 11 月

可以使用 Windows 窗体 TabControl 以有组织的形式显示其他控件。下面的过程显示了如何在选项卡页的主要部位显示图片。有关向选项卡页的标签部分添加图标的信息,请参见如何:更改 Windows 窗体 TabControl 的外观

以编程方式添加控件

  • 使用由 TabPageControls 属性返回的集合的 Add 方法:

    ' 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());
    

请参见

任务

如何:更改 Windows 窗体 TabControl 的外观

如何:禁用选项卡页

如何:使用 Windows 窗体 TabControl 添加和移除选项卡

参考

TabControl 控件概述(Windows 窗体)

其他资源

TabControl 控件(Windows 窗体)