TabControl.TabPages 屬性

定義

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

C#
public System.Windows.Forms.TabControl.TabPageCollection TabPages { get; }

屬性值

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

範例

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

C#
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());
    }
}

備註

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

適用於

產品 版本
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

另請參閱