TabControl.TabPages 屬性

定義

取得這個索引標籤控制項中的索引標籤頁集合。

public:
 property System::Windows::Forms::TabControl::TabPageCollection ^ TabPages { System::Windows::Forms::TabControl::TabPageCollection ^ get(); };
public System.Windows.Forms.TabControl.TabPageCollection TabPages { get; }
member this.TabPages : System.Windows.Forms.TabControl.TabPageCollection
Public ReadOnly Property TabPages As TabControl.TabPageCollection

屬性值

TabControl.TabPageCollection,含有這個 TabPage 中的 TabControl 物件。

範例

下列程式碼範例會使用一個 TabPageTabControl 建立 。 本範例會使用 方法, Add 將單一索引標籤頁面新增至 tabControl1 索引標籤控制項。 請注意, TabPages 屬性是用來取得 tabControl1 控制項集合,以將 新增 tabPage1 至這個集合。

using namespace System::Drawing;
using namespace System::Windows::Forms;
public ref class Form1: public Form
{
private:
   TabControl^ tabControl1;
   TabPage^ tabPage1;

public:
   Form1()
   {
      this->tabControl1 = gcnew TabControl;
      this->tabPage1 = gcnew TabPage;
      
      // Gets the controls collection for tabControl1.
      // Adds the tabPage1 to this collection.
      this->tabControl1->TabPages->Add( tabPage1 );
      this->tabControl1->Location = Point(25,25);
      this->tabControl1->Size = System::Drawing::Size( 250, 250 );
      this->ClientSize = System::Drawing::Size( 300, 300 );
      this->Controls->Add( tabControl1 );
   }

};

int main()
{
   Application::Run( gcnew Form1 );
}
using System.Drawing;
using System.Windows.Forms;

public class Form1 : Form
{
    private TabControl tabControl1;
    private TabPage tabPage1;

    public Form1()
    {
        this.tabControl1 = new TabControl();
        this.tabPage1 = new TabPage();

        // Gets the controls collection for tabControl1.
        // Adds the tabPage1 to this collection.
        this.tabControl1.TabPages.Add(tabPage1);

        this.tabControl1.Location = new Point(25, 25);
        this.tabControl1.Size = new Size(250, 250);

        this.ClientSize = new Size(300, 300);
        this.Controls.Add(tabControl1);
    }

    static void Main() 
    {
        Application.Run(new Form1());
    }
}
Imports System.Drawing
Imports System.Windows.Forms

Public Class Form1
    Inherits Form
    Private tabControl1 As TabControl
    Private tabPage1 As TabPage

    Public Sub New()
        Me.tabControl1 = New TabControl()
        Me.tabPage1 = New TabPage()

        ' Gets the controls collection for tabControl1.
        ' Adds the tabPage1 to this collection.
        Me.tabControl1.TabPages.Add(tabPage1)

        Me.tabControl1.Location = New Point(25, 25)
        Me.tabControl1.Size = New Size(250, 250)

        Me.ClientSize = New Size(300, 300)
        Me.Controls.Add(tabControl1)
    End Sub

    Shared Sub Main()
        Application.Run(New Form1())
    End Sub
End Class

備註

此集合中的索引標籤頁面順序會反映索引標籤出現在 控制項中的順序。

適用於

另請參閱