TabControl 類別

定義

管理一組相關的索引標籤頁。

public ref class TabControl : System::Windows::Forms::Control
public class TabControl : System.Windows.Forms.Control
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
public class TabControl : System.Windows.Forms.Control
type TabControl = class
    inherit Control
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type TabControl = class
    inherit Control
Public Class TabControl
Inherits Control
繼承
屬性

範例

下列程式碼範例會使用 Visual Studio Windows Forms Designer 來建立具有三個 TabControl 索引標籤頁面的 。 每個索引標籤頁面都包含數個控制項。

public ref class Form1: public System::Windows::Forms::Form
{
private:

   // Required designer variable.
   System::ComponentModel::Container^ components;

   // Declare variables.
   System::Windows::Forms::RadioButton^ tab3RadioButton2;
   System::Windows::Forms::RadioButton^ tab3RadioButton1;
   System::Windows::Forms::CheckBox^ tab2CheckBox3;
   System::Windows::Forms::CheckBox^ tab2CheckBox2;
   System::Windows::Forms::CheckBox^ tab2CheckBox1;
   System::Windows::Forms::Label ^ tab1Label1;
   System::Windows::Forms::Button^ tab1Button1;
   System::Windows::Forms::TabPage^ tabPage3;
   System::Windows::Forms::TabPage^ tabPage2;
   System::Windows::Forms::TabPage^ tabPage1;
   System::Windows::Forms::TabControl^ tabControl1;

public:
   Form1()
   {
      
      // This call is required for Windows Form Designer support.
      InitializeComponent();
   }


private:

   // This method is required for Designer support.
   void InitializeComponent()
   {
      this->components = gcnew System::ComponentModel::Container;
      this->tabPage1 = gcnew System::Windows::Forms::TabPage;
      this->tab2CheckBox3 = gcnew System::Windows::Forms::CheckBox;
      this->tab3RadioButton2 = gcnew System::Windows::Forms::RadioButton;
      this->tabControl1 = gcnew System::Windows::Forms::TabControl;
      this->tab2CheckBox2 = gcnew System::Windows::Forms::CheckBox;
      this->tab2CheckBox1 = gcnew System::Windows::Forms::CheckBox;
      this->tab3RadioButton1 = gcnew System::Windows::Forms::RadioButton;
      this->tab1Label1 = gcnew System::Windows::Forms::Label;
      this->tabPage3 = gcnew System::Windows::Forms::TabPage;
      this->tabPage2 = gcnew System::Windows::Forms::TabPage;
      this->tab1Button1 = gcnew System::Windows::Forms::Button;
      tabPage1->Text = "tabPage1";
      tabPage1->Size = System::Drawing::Size( 256, 214 );
      tabPage1->TabIndex = 0;
      tab2CheckBox3->Location = System::Drawing::Point( 32, 136 );
      tab2CheckBox3->Text = "checkBox3";
      tab2CheckBox3->Size = System::Drawing::Size( 176, 32 );
      tab2CheckBox3->TabIndex = 2;
      tab2CheckBox3->Visible = true;
      tab3RadioButton2->Location = System::Drawing::Point( 40, 72 );
      tab3RadioButton2->Text = "radioButton2";
      tab3RadioButton2->Size = System::Drawing::Size( 152, 24 );
      tab3RadioButton2->TabIndex = 1;
      tab3RadioButton2->Visible = true;
      tabControl1->Location = System::Drawing::Point( 16, 16 );
      tabControl1->Size = System::Drawing::Size( 264, 240 );
      tabControl1->SelectedIndex = 0;
      tabControl1->TabIndex = 0;
      tab2CheckBox2->Location = System::Drawing::Point( 32, 80 );
      tab2CheckBox2->Text = "checkBox2";
      tab2CheckBox2->Size = System::Drawing::Size( 176, 32 );
      tab2CheckBox2->TabIndex = 1;
      tab2CheckBox2->Visible = true;
      tab2CheckBox1->Location = System::Drawing::Point( 32, 24 );
      tab2CheckBox1->Text = "checkBox1";
      tab2CheckBox1->Size = System::Drawing::Size( 176, 32 );
      tab2CheckBox1->TabIndex = 0;
      tab3RadioButton1->Location = System::Drawing::Point( 40, 32 );
      tab3RadioButton1->Text = "radioButton1";
      tab3RadioButton1->Size = System::Drawing::Size( 152, 24 );
      tab3RadioButton1->TabIndex = 0;
      tab1Label1->Location = System::Drawing::Point( 16, 24 );
      tab1Label1->Text = "label1";
      tab1Label1->Size = System::Drawing::Size( 224, 96 );
      tab1Label1->TabIndex = 1;
      tabPage3->Text = "tabPage3";
      tabPage3->Size = System::Drawing::Size( 256, 214 );
      tabPage3->TabIndex = 2;
      tabPage2->Text = "tabPage2";
      tabPage2->Size = System::Drawing::Size( 256, 214 );
      tabPage2->TabIndex = 1;
      tab1Button1->Location = System::Drawing::Point( 88, 144 );
      tab1Button1->Size = System::Drawing::Size( 80, 40 );
      tab1Button1->TabIndex = 0;
      tab1Button1->Text = "button1";
      tab1Button1->Click += gcnew System::EventHandler( this, &Form1::tab1Button1_Click );
      this->Text = "Form1";
      
      // Adds controls to the second tab page.
      tabPage2->Controls->Add( this->tab2CheckBox3 );
      tabPage2->Controls->Add( this->tab2CheckBox2 );
      tabPage2->Controls->Add( this->tab2CheckBox1 );
      
      // Adds controls to the third tab page.
      tabPage3->Controls->Add( this->tab3RadioButton2 );
      tabPage3->Controls->Add( this->tab3RadioButton1 );
      
      // Adds controls to the first tab page.
      tabPage1->Controls->Add( this->tab1Label1 );
      tabPage1->Controls->Add( this->tab1Button1 );
      
      // Adds the TabControl to the form.
      this->Controls->Add( this->tabControl1 );
      
      // Adds the tab pages to the TabControl.
      tabControl1->Controls->Add( this->tabPage1 );
      tabControl1->Controls->Add( this->tabPage2 );
      tabControl1->Controls->Add( this->tabPage3 );
   }

   void tab1Button1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      
      // Inserts the code that should run when the button is clicked.
   }

};

int main()
{
   Application::Run( gcnew Form1 );
}
public class Form1 : System.Windows.Forms.Form
{
    // Required designer variable.
    private System.ComponentModel.Container components;

    // Declare variables.
    private System.Windows.Forms.RadioButton tab3RadioButton2;
    private System.Windows.Forms.RadioButton tab3RadioButton1;
    private System.Windows.Forms.CheckBox tab2CheckBox3;
    private System.Windows.Forms.CheckBox tab2CheckBox2;
    private System.Windows.Forms.CheckBox tab2CheckBox1;
    private System.Windows.Forms.Label tab1Label1;
    private System.Windows.Forms.Button tab1Button1;
    private System.Windows.Forms.TabPage tabPage3;
    private System.Windows.Forms.TabPage tabPage2;
    private System.Windows.Forms.TabPage tabPage1;
    private System.Windows.Forms.TabControl tabControl1;
 
    public Form1()
    {
        // This call is required for Windows Form Designer support.
        InitializeComponent();
    }

    // This method is required for Designer support.
    private void InitializeComponent()
    {
        this.components = new System.ComponentModel.Container();
        this.tabPage1 = new System.Windows.Forms.TabPage();
        this.tab2CheckBox3 = new System.Windows.Forms.CheckBox();
        this.tab3RadioButton2 = new System.Windows.Forms.RadioButton();
        this.tabControl1 = new System.Windows.Forms.TabControl();
        this.tab2CheckBox2 = new System.Windows.Forms.CheckBox();
        this.tab2CheckBox1 = new System.Windows.Forms.CheckBox();
        this.tab3RadioButton1 = new System.Windows.Forms.RadioButton();
        this.tab1Label1 = new System.Windows.Forms.Label();
        this.tabPage3 = new System.Windows.Forms.TabPage();
        this.tabPage2 = new System.Windows.Forms.TabPage();
        this.tab1Button1 = new System.Windows.Forms.Button();

        tabPage1.Text = "tabPage1";
        tabPage1.Size = new System.Drawing.Size(256, 214);
        tabPage1.TabIndex = 0;
        tab2CheckBox3.Location = new System.Drawing.Point(32, 136);
        tab2CheckBox3.Text = "checkBox3";
        tab2CheckBox3.Size = new System.Drawing.Size(176, 32);
        tab2CheckBox3.TabIndex = 2;
        tab2CheckBox3.Visible = true;
        tab3RadioButton2.Location = new System.Drawing.Point(40, 72);
        tab3RadioButton2.Text = "radioButton2";
        tab3RadioButton2.Size = new System.Drawing.Size(152, 24);
        tab3RadioButton2.TabIndex = 1;
        tab3RadioButton2.Visible = true;
        tabControl1.Location = new System.Drawing.Point(16, 16);
        tabControl1.Size = new System.Drawing.Size(264, 240);
        tabControl1.SelectedIndex = 0;
        tabControl1.TabIndex = 0;
        tab2CheckBox2.Location = new System.Drawing.Point(32, 80);
        tab2CheckBox2.Text = "checkBox2";
        tab2CheckBox2.Size = new System.Drawing.Size(176, 32);
        tab2CheckBox2.TabIndex = 1;
        tab2CheckBox2.Visible = true;
        tab2CheckBox1.Location = new System.Drawing.Point(32, 24);
        tab2CheckBox1.Text = "checkBox1";
        tab2CheckBox1.Size = new System.Drawing.Size(176, 32);
        tab2CheckBox1.TabIndex = 0;
        tab3RadioButton1.Location = new System.Drawing.Point(40, 32);
        tab3RadioButton1.Text = "radioButton1";
        tab3RadioButton1.Size = new System.Drawing.Size(152, 24);
        tab3RadioButton1.TabIndex = 0;
        tab1Label1.Location = new System.Drawing.Point(16, 24);
        tab1Label1.Text = "label1";
        tab1Label1.Size = new System.Drawing.Size(224, 96);
        tab1Label1.TabIndex = 1;
        tabPage3.Text = "tabPage3";
        tabPage3.Size = new System.Drawing.Size(256, 214);
        tabPage3.TabIndex = 2;
        tabPage2.Text = "tabPage2";
        tabPage2.Size = new System.Drawing.Size(256, 214);
        tabPage2.TabIndex = 1;
        tab1Button1.Location = new System.Drawing.Point(88, 144);
        tab1Button1.Size = new System.Drawing.Size(80, 40);
        tab1Button1.TabIndex = 0;
        tab1Button1.Text = "button1";
        tab1Button1.Click += new 
           System.EventHandler(this.tab1Button1_Click);
        this.Text = "Form1";

        // Adds controls to the second tab page.
        tabPage2.Controls.Add(this.tab2CheckBox3);
        tabPage2.Controls.Add(this.tab2CheckBox2);
        tabPage2.Controls.Add(this.tab2CheckBox1);
        // Adds controls to the third tab page.
        tabPage3.Controls.Add(this.tab3RadioButton2);
        tabPage3.Controls.Add(this.tab3RadioButton1);
        // Adds controls to the first tab page.
        tabPage1.Controls.Add(this.tab1Label1);
        tabPage1.Controls.Add(this.tab1Button1);
        // Adds the TabControl to the form.
        this.Controls.Add(this.tabControl1);
        // Adds the tab pages to the TabControl.
        tabControl1.Controls.Add(this.tabPage1);
        tabControl1.Controls.Add(this.tabPage2);
        tabControl1.Controls.Add(this.tabPage3);
    }
 
    private void tab1Button1_Click (object sender, System.EventArgs e)
    {
        // Inserts the code that should run when the button is clicked.
    }
 
    public static void Main(string[] args) 
    {
        Application.Run(new Form1());
    }
}
Public Class Form1
    Inherits System.Windows.Forms.Form
    ' Required designer variable.
    Private components As System.ComponentModel.Container
    
    ' Declares variables.
    Private tab3RadioButton2 As System.Windows.Forms.RadioButton
    Private tab3RadioButton1 As System.Windows.Forms.RadioButton
    Private tab2CheckBox3 As System.Windows.Forms.CheckBox
    Private tab2CheckBox2 As System.Windows.Forms.CheckBox
    Private tab2CheckBox1 As System.Windows.Forms.CheckBox
    Private tab1Label1 As System.Windows.Forms.Label
    Private WithEvents tab1Button1 As System.Windows.Forms.Button
    Private tabPage3 As System.Windows.Forms.TabPage
    Private tabPage2 As System.Windows.Forms.TabPage
    Private tabPage1 As System.Windows.Forms.TabPage
    Private tabControl1 As System.Windows.Forms.TabControl    
    
    Public Sub New()
        ' This call is required for Windows Form Designer support.
        InitializeComponent()
    End Sub    
    
    
    ' This method is required for Designer support.
    Private Sub InitializeComponent()
        Me.components = New System.ComponentModel.Container()
        Me.tabPage1 = New System.Windows.Forms.TabPage()
        Me.tab2CheckBox3 = New System.Windows.Forms.CheckBox()
        Me.tab3RadioButton2 = New System.Windows.Forms.RadioButton()
        Me.tabControl1 = New System.Windows.Forms.TabControl()
        Me.tab2CheckBox2 = New System.Windows.Forms.CheckBox()
        Me.tab2CheckBox1 = New System.Windows.Forms.CheckBox()
        Me.tab3RadioButton1 = New System.Windows.Forms.RadioButton()
        Me.tab1Label1 = New System.Windows.Forms.Label()
        Me.tabPage3 = New System.Windows.Forms.TabPage()
        Me.tabPage2 = New System.Windows.Forms.TabPage()
        Me.tab1Button1 = New System.Windows.Forms.Button()
        
        tabPage1.Text = "tabPage1"
        tabPage1.Size = New System.Drawing.Size(256, 214)
        tabPage1.TabIndex = 0
        tab2CheckBox3.Location = New System.Drawing.Point(32, 136)
        tab2CheckBox3.Text = "checkBox3"
        tab2CheckBox3.Size = New System.Drawing.Size(176, 32)
        tab2CheckBox3.TabIndex = 2
        tab2CheckBox3.Visible = True
        tab3RadioButton2.Location = New System.Drawing.Point(40, 72)
        tab3RadioButton2.Text = "radioButton2"
        tab3RadioButton2.Size = New System.Drawing.Size(152, 24)
        tab3RadioButton2.TabIndex = 1
        tab3RadioButton2.Visible = True
        tabControl1.Location = New System.Drawing.Point(16, 16)
        tabControl1.Size = New System.Drawing.Size(264, 240)
        tabControl1.SelectedIndex = 0
        tabControl1.TabIndex = 0
        tab2CheckBox2.Location = New System.Drawing.Point(32, 80)
        tab2CheckBox2.Text = "checkBox2"
        tab2CheckBox2.Size = New System.Drawing.Size(176, 32)
        tab2CheckBox2.TabIndex = 1
        tab2CheckBox2.Visible = True
        tab2CheckBox1.Location = New System.Drawing.Point(32, 24)
        tab2CheckBox1.Text = "checkBox1"
        tab2CheckBox1.Size = New System.Drawing.Size(176, 32)
        tab2CheckBox1.TabIndex = 0
        tab3RadioButton1.Location = New System.Drawing.Point(40, 32)
        tab3RadioButton1.Text = "radioButton1"
        tab3RadioButton1.Size = New System.Drawing.Size(152, 24)
        tab3RadioButton1.TabIndex = 0
        tab1Label1.Location = New System.Drawing.Point(16, 24)
        tab1Label1.Text = "label1"
        tab1Label1.Size = New System.Drawing.Size(224, 96)
        tab1Label1.TabIndex = 1
        tabPage3.Text = "tabPage3"
        tabPage3.Size = New System.Drawing.Size(256, 214)
        tabPage3.TabIndex = 2
        tabPage2.Text = "tabPage2"
        tabPage2.Size = New System.Drawing.Size(256, 214)
        tabPage2.TabIndex = 1
        tab1Button1.Location = New System.Drawing.Point(88, 144)
        tab1Button1.Size = New System.Drawing.Size(80, 40)
        tab1Button1.TabIndex = 0
        tab1Button1.Text = "button1"
        Me.Text = "Form1"
        
        ' Adds controls to the second tab page.
        tabPage2.Controls.Add(Me.tab2CheckBox3)
        tabPage2.Controls.Add(Me.tab2CheckBox2)
        tabPage2.Controls.Add(Me.tab2CheckBox1)
        ' Adds controls to the third tab page.
        tabPage3.Controls.Add(Me.tab3RadioButton2)
        tabPage3.Controls.Add(Me.tab3RadioButton1)
        ' Adds controls to the first tab page.
        tabPage1.Controls.Add(Me.tab1Label1)
        tabPage1.Controls.Add(Me.tab1Button1)
        ' Adds the TabControl to the form.
        Me.Controls.Add(tabControl1)
        ' Adds the tab pages to the TabControl.
        tabControl1.Controls.Add(Me.tabPage1)
        tabControl1.Controls.Add(Me.tabPage2)
        tabControl1.Controls.Add(Me.tabPage3)
    End Sub   
    
    Private Sub tab1Button1_Click(sender As Object, e As System.EventArgs) _
        Handles tab1Button1.Click
        
        ' Inserts the code that should run when the button is clicked.
    End Sub
    
    Public Shared Sub Main()
        Application.Run(New Form1())
    End Sub
    
End Class

備註

TabControl包含索引標籤頁面,這些頁面是由 TabPage 您透過 TabPages 屬性新增的物件所表示。 此集合中的索引標籤頁順序會反映索引標籤出現在 控制項中的順序。

使用者可以按一下 控制項中的其中一個索引標籤來變更目前的 TabPage 。 您也可以使用下列 TabControl 其中一個屬性,以程式設計方式變更目前的 TabPage

在 .NET Framework 2.0 中,您也可以使用下列其中一種方法:

在 .NET Framework 2.0 中,您可以藉由處理下列其中一個事件,在目前的索引標籤變更時回應:

中的 TabControl 索引標籤是 的 TabControl 一部分,但不是個別 TabPage 控制項的一部分。 TabPage類別的成員,例如 ForeColor 屬性,只會影響索引標籤頁面的用戶端矩形,但不會影響索引標籤。 此外, HideTabPage 方法不會隱藏索引標籤。若要隱藏索引標籤,您必須從 TabControl.TabPages 集合中移除 TabPage 控制項。

在 .NET Framework 2.0 中,索引標籤會被視為索引標籤頁面的一部分,以判斷 Enter 發生的 和 Leave 事件 TabPage 。 在舊版的 .NET Framework 中,當焦點進入或離開索引標籤時, Enter 不會發生 的 TabPageLeave 事件,但只有在焦點進入或離開索引標籤頁面的用戶端矩形時才會發生。

除非集合 Control.Click 中至少有一個 TabPage :、 Control.DoubleClick 、、 Control.MouseDown 、、 Control.MouseEnterControl.MouseHoverControl.MouseUpControl.MouseLeaveControl.MouseMove ,否則不會針對 TabControl 類別引發下列 TabControl.TabPages 事件。 如果集合中至少有一個 TabPage ,而且使用者與索引標籤控制項的標頭互動 (TabPage 名稱出現在) ,則會 TabControl 引發適當的事件。 不過,如果使用者互動是在索引標籤頁面的 內 ClientRectangle ,則會 TabPage 引發適當的事件。

除非顯示索引標籤頁面,否則不會建立 中包含的 TabPage 控制項,而且在顯示索引標籤頁面之前,不會啟動這些控制項中的任何資料系結。

啟用視覺化樣式,且 Alignment 屬性設定為 以外的 Top 值時,索引標籤內容可能無法正確呈現。 若要解決此問題,您可以使用擁有者繪圖自行繪製索引標籤內容。 如需詳細資訊,請參閱 如何:使用 TabControl 顯示Side-Aligned索引標籤。

Alignment當 屬性設定為 以外的 Top 值,且 Appearance 屬性設定為 以外的 Normal 值時,索引標籤頁面內容可能無法正確呈現。

建構函式

TabControl()

初始化 TabControl 類別的新執行個體。

屬性

AccessibilityObject

取得指定給控制項的 AccessibleObject

(繼承來源 Control)
AccessibleDefaultActionDescription

取得或設定協助用戶端應用程式所使用的控制項的預設動作描述。

(繼承來源 Control)
AccessibleDescription

取得或設定協助工具用戶端應用程式使用之控制項的描述。

(繼承來源 Control)
AccessibleName

取得或設定協助工具用戶端應用程式使用的控制項名稱。

(繼承來源 Control)
AccessibleRole

取得或設定控制項的可存取角色。

(繼承來源 Control)
Alignment

取得或設定索引標籤所對齊的控制項區域 (例如,沿著上方)。

AllowDrop

取得或設定值,指出控制項是否能接受使用者拖放上來的資料。

(繼承來源 Control)
Anchor

取得或設定控制項繫結至的容器邊緣,並決定控制項隨其父代重新調整大小的方式。

(繼承來源 Control)
Appearance

取得或設定控制項索引標籤的視覺外觀。

AutoScrollOffset

取得或設定此控制項在 ScrollControlIntoView(Control) 中要捲動到哪一個位置。

(繼承來源 Control)
AutoSize

這個屬性與這個類別無關。

(繼承來源 Control)
BackColor

這個成員對這個控制項來說不具意義。

BackgroundImage

這個成員對這個控制項來說不具意義。

BackgroundImageLayout

這個成員對這個控制項來說不具意義。

BackgroundImageLayout

取得或設定在 ImageLayout 列舉類型中所定義的背景影像配置。

(繼承來源 Control)
BindingContext

取得或設定控制項的 BindingContext

(繼承來源 Control)
Bottom

取得控制項下邊緣和其容器工作區 (Client Area) 上邊緣之間的距離 (單位為像素)。

(繼承來源 Control)
Bounds

取得或設定控制項 (包括其非工作區項目) 相對於父控制項之大小和位置 (單位為像素)。

(繼承來源 Control)
CanEnableIme

取得值,這個值表示 ImeMode 屬性是否可以設定為使用中的值,以啟用 IME 支援。

(繼承來源 Control)
CanFocus

取得指示控制項是否能取得焦點的值。

(繼承來源 Control)
CanRaiseEvents

判斷是否可以在控制項上引發事件。

(繼承來源 Control)
CanSelect

取得指示能否選取控制項的值。

(繼承來源 Control)
Capture

取得或設定值,指出控制項是否捕捉住滑鼠。

(繼承來源 Control)
CausesValidation

取得或設定值,指出控制項取得焦點時,是否會在任何需要驗證的控制項上執行驗證。

(繼承來源 Control)
ClientRectangle

取得表示控制項工作區的矩形。

(繼承來源 Control)
ClientSize

取得或設定控制項工作區的高度和寬度。

(繼承來源 Control)
CompanyName

取得包含控制項之應用程式的公司名稱或建立者。

(繼承來源 Control)
Container

取得包含 IContainerComponent

(繼承來源 Component)
ContainsFocus

取得指示控制項 (或其子控制項之一) 目前是否擁有輸入焦點的值。

(繼承來源 Control)
ContextMenu

取得或設定與控制項關聯的捷徑功能表。

(繼承來源 Control)
ContextMenuStrip

取得或設定與這個控制項相關的 ContextMenuStrip

(繼承來源 Control)
Controls

取得控制項中包含的控制項集合。

(繼承來源 Control)
Created

取得值,指出是否已經建立控制項。

(繼承來源 Control)
CreateParams

這個成員會覆寫 CreateParams

Cursor

取得或設定滑鼠指標移至控制項上時顯示的游標。

(繼承來源 Control)
DataBindings

取得控制項的資料繫結 (Data Binding)。

(繼承來源 Control)
DataContext

取得或設定資料系結用途的資料內容。 這是環境屬性。

(繼承來源 Control)
DefaultCursor

取得或設定控制項的預設游標。

(繼承來源 Control)
DefaultImeMode

取得控制項支援的預設輸入法 (IME) 模式。

(繼承來源 Control)
DefaultMargin

取得控制項之間的預設指定間距 (單位為像素)。

(繼承來源 Control)
DefaultMaximumSize

取得指定為控制項的預設大小之最大值的長度和高度 (單位為像素)。

(繼承來源 Control)
DefaultMinimumSize

取得指定為控制項的預設大小之最小值的長度和高度 (單位為像素)。

(繼承來源 Control)
DefaultPadding

取得控制項內容的內部間距 (單位為像素)。

(繼承來源 Control)
DefaultSize

取得控制項的預設大小。

DesignMode

取得值,指出 Component 目前是否處於設計模式。

(繼承來源 Component)
DeviceDpi

取得目前顯示控制項的顯示裝置的 DPI 值。

(繼承來源 Control)
DisplayRectangle

取得控制項索引標籤頁的顯示區域。

Disposing

取得值,指出基底 Control 類別是否正在處置的過程中。

(繼承來源 Control)
Dock

取得或設定停駐在其父控制項的控制項框線,並決定控制項隨其父代重新調整大小的方式。

(繼承來源 Control)
DoubleBuffered

這個成員對這個控制項來說不具意義。

DoubleBuffered

取得或設定值,指出這個控制項是否應使用次要緩衝區重繪其介面,以減少或防止重繪閃動 (Flicker)。

(繼承來源 Control)
DrawMode

取得或設定控制項索引標籤的繪製方式。

Enabled

取得或設定值,指出控制項是否可回應使用者互動。

(繼承來源 Control)
Events

取得附加在這個 Component 上的事件處理常式清單。

(繼承來源 Component)
Focused

取得指示控制項是否擁有輸入焦點的值。

(繼承來源 Control)
Font

取得或設定控制項顯示之文字字型。

(繼承來源 Control)
FontHeight

取得或設定控制項字型的高度。

(繼承來源 Control)
ForeColor

這個成員對這個控制項來說不具意義。

Handle

取得控制項要繫結的目標視窗控制代碼。

(繼承來源 Control)
HasChildren

取得指示控制項是否包含一或多個子控制項的值。

(繼承來源 Control)
Height

取得或設定控制項的高度。

(繼承來源 Control)
HotTrack

取得或設定值,指出當滑鼠移至其上時,控制項的索引標籤是否會變更外觀。

ImageList

取得或設定顯示在控制項的索引標籤上的影像。

ImeMode

取得或設定控制項的輸入法 (IME) 模式。

(繼承來源 Control)
ImeModeBase

取得或設定控制項的 IME 模式。

(繼承來源 Control)
InvokeRequired

取得一個值。這個值會指示是否由於呼叫端是在建立控制項之執行緒以外的執行緒,因此在進行控制項的方法呼叫時,應呼叫叫用 (Invoke) 方法。

(繼承來源 Control)
IsAccessible

取得或設定值,指出可及性應用程式是否見得到控制項。

(繼承來源 Control)
IsAncestorSiteInDesignMode

指出此控制項的其中一個上階是否已月臺,且該月臺位於 DesignMode 中。 這個屬性是唯讀的。

(繼承來源 Control)
IsDisposed

取得指示控制項是否已經處置的值。

(繼承來源 Control)
IsHandleCreated

取得指示控制項是否有相關控制代碼的值。

(繼承來源 Control)
IsMirrored

取得值,指出是否左右反轉控制項。

(繼承來源 Control)
ItemSize

取得或設定控制項索引標籤的大小。

LayoutEngine

取得控制項之配置引擎的快取執行個體。

(繼承來源 Control)
Left

取得或設定控制項左邊緣和其容器工作區 (Client Area) 左邊緣之間的距離 (單位為像素)。

(繼承來源 Control)
Location

取得或設定對應至控制項容器左上角之控制項左上角的座標。

(繼承來源 Control)
Margin

取得或設定控制項之間的空格。

(繼承來源 Control)
MaximumSize

取得或設定 GetPreferredSize(Size) 可以指定的上限大小。

(繼承來源 Control)
MinimumSize

取得或設定 GetPreferredSize(Size) 可以指定的下限大小。

(繼承來源 Control)
Multiline

取得或設定值,指出是否可以顯示一列以上的索引標籤。

Name

取得或設定控制項的名稱。

(繼承來源 Control)
Padding

取得或設定在控制項索引標籤頁上每一個項目周圍的空間量。

Parent

取得或設定控制項的父容器。

(繼承來源 Control)
PreferredSize

取得能夠容納控制項的矩形區域的大小。

(繼承來源 Control)
ProductName

取得包含控制項的組件的產品名稱。

(繼承來源 Control)
ProductVersion

取得包含控制項的組件的版本。

(繼承來源 Control)
RecreatingHandle

取得指示控制項目前是否正重新建立其控制代碼的值。

(繼承來源 Control)
Region

取得或設定與控制項關聯的視窗區域。

(繼承來源 Control)
RenderRightToLeft
已淘汰.
已淘汰.

此屬性現在已過時。

(繼承來源 Control)
ResizeRedraw

取得或設定值,指出控制項重設大小時,是否會重繪本身。

(繼承來源 Control)
Right

取得控制項右邊緣和其容器工作區 (Client Area) 左邊緣之間的距離 (單位為像素)。

(繼承來源 Control)
RightToLeft

取得或設定值,指出控制項的項目是否對齊,以支援使用由右至左字型的地區設定。

(繼承來源 Control)
RightToLeftLayout

取得或設定值,指出是否已開啟右到左的左右反轉位置。

RowCount

取得目前顯示在控制項索引標籤區域上的數目。

ScaleChildren

取得值,以判斷子控制項的縮放。

(繼承來源 Control)
SelectedIndex

取得或設定目前已選取之索引標籤頁的索引。

SelectedTab

取得或設定目前已選取的索引標籤頁。

ShowFocusCues

取得指示控制項是否應顯示焦點矩形 (Focus Rectangle) 的值。

(繼承來源 Control)
ShowKeyboardCues

取得值,指出使用者介面是否處於可顯示或隱藏鍵盤快速鍵的適當狀態下。

(繼承來源 Control)
ShowToolTips

取得或設定值,指出當滑鼠移至索引標籤上方時,是否顯示索引標籤的工具提示。

Site

取得或設定控制項的站台。

(繼承來源 Control)
Size

取得或設定控制項的高度和寬度。

(繼承來源 Control)
SizeMode

取得或設定調整控制項索引標籤大小的方式。

TabCount

取得索引標籤區域中的索引標籤數目。

TabIndex

取得或設定控制項容器中的控制項定位順序。

(繼承來源 Control)
TabPages

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

TabStop

取得或設定值,指出使用者是否能使用 TAB 鍵,將焦點 (Focus) 給予這個控制項。

(繼承來源 Control)
Tag

取得或設定物件,其包含控制項相關資料。

(繼承來源 Control)
Text

這個成員對這個控制項來說不具意義。

Top

取得或設定控制項上邊緣和其容器工作區 (Client Area) 上邊緣之間的距離 (單位為像素)。

(繼承來源 Control)
TopLevelControl

取得沒有其他 Windows Form 父控制項的父控制項。 通常,這會是內含控制項最外層的 Form

(繼承來源 Control)
UseWaitCursor

取得或設定值,指出是否將等待游標用於目前控制項和所有子控制項。

(繼承來源 Control)
Visible

取得或設定值,這個值指出是否顯示控制項及其所有子控制項。

(繼承來源 Control)
Width

取得或設定控制項的寬度。

(繼承來源 Control)
WindowTarget

這個屬性與這個類別無關。

(繼承來源 Control)

方法

AccessibilityNotifyClients(AccessibleEvents, Int32)

將指定子控制項的指定 AccessibleEvents 告知協助工具用戶端應用程式。

(繼承來源 Control)
AccessibilityNotifyClients(AccessibleEvents, Int32, Int32)

將指定子控制項的指定 AccessibleEvents 告知協助工具用戶端應用程式。

(繼承來源 Control)
BeginInvoke(Action)

在建立控制項基礎控制代碼的執行緒上執行指定的非同步委派。

(繼承來源 Control)
BeginInvoke(Delegate)

在建立控制項基礎控制代碼的執行緒上執行指定的非同步委派。

(繼承來源 Control)
BeginInvoke(Delegate, Object[])

在建立控制項基礎控制代碼的執行緒上,以指定的引數非同步執行指定的委派。

(繼承來源 Control)
BringToFront()

將控制項帶到疊置順序的前面。

(繼承來源 Control)
Contains(Control)

擷取指示控制項是否為控制項的子控制項的值。

(繼承來源 Control)
CreateAccessibilityInstance()

管理一組相關的索引標籤頁。

CreateAccessibilityInstance()

為控制項建立新的協助工具物件。

(繼承來源 Control)
CreateControl()

強制建立可見控制項,包含建立控制代碼和任何可見的子控制項。

(繼承來源 Control)
CreateControlsInstance()

這個成員會覆寫 CreateControlsInstance()

CreateGraphics()

建立控制項的 Graphics

(繼承來源 Control)
CreateHandle()

這個成員會覆寫 CreateHandle()

CreateObjRef(Type)

建立包含所有相關資訊的物件,這些資訊是產生用來與遠端物件通訊的所需 Proxy。

(繼承來源 MarshalByRefObject)
DefWndProc(Message)

傳送指定的訊息至預設的視窗程序。

(繼承來源 Control)
DeselectTab(Int32)

將具有指定之索引的索引標籤之後的索引標籤設為目前的索引標籤。

DeselectTab(String)

將具有指定之名稱的索引標籤之後的索引標籤設為目前的索引標籤。

DeselectTab(TabPage)

將所指定 TabPage 之後的索引標籤設為目前的索引標籤。

DestroyHandle()

終結與這個控制項相關的控制代碼。

(繼承來源 Control)
Dispose()

釋放 Component 所使用的所有資源。

(繼承來源 Component)
Dispose(Boolean)

釋放 Control 所使用的 Unmanaged 資源,以及其子系的控制項,並會選擇性地釋放一些 Managed 資源。

DoDragDrop(Object, DragDropEffects)

開始拖放作業。

(繼承來源 Control)
DoDragDrop(Object, DragDropEffects, Bitmap, Point, Boolean)

開始拖曳作業。

(繼承來源 Control)
DrawToBitmap(Bitmap, Rectangle)

支援呈現為指定的點陣圖。

(繼承來源 Control)
EndInvoke(IAsyncResult)

擷取由傳遞的 IAsyncResult 表示的非同步作業的傳回值。

(繼承來源 Control)
Equals(Object)

判斷指定的物件是否等於目前的物件。

(繼承來源 Object)
FindForm()

擷取控制項所在的表單。

(繼承來源 Control)
Focus()

設定控制項的輸入焦點。

(繼承來源 Control)
GetAccessibilityObjectById(Int32)

擷取指定的 AccessibleObject

(繼承來源 Control)
GetAutoSizeMode()

擷取值,表示已啟用控制項的 AutoSize 屬性時,該控制項的行為模式為何。

(繼承來源 Control)
GetChildAtPoint(Point)

擷取位於指定座標的子控制項。

(繼承來源 Control)
GetChildAtPoint(Point, GetChildAtPointSkip)

擷取位於指定座標上的子控制項,指定是否要忽略特定類型的子控制項。

(繼承來源 Control)
GetContainerControl()

傳回父控制項的控制項鏈結上的下一個 ContainerControl

(繼承來源 Control)
GetControl(Int32)

在指定的位置取得 TabPage 控制項。

GetHashCode()

做為預設雜湊函式。

(繼承來源 Object)
GetItems()

取得屬於 TabPage 控制項的 TabControl 控制項陣列。

GetItems(Type)

TabPage 中的 TabControl 控制項複製到指定之型別的陣列中。

GetLifetimeService()
已淘汰.

擷取控制這個執行個體存留期 (Lifetime) 原則的目前存留期服務物件。

(繼承來源 MarshalByRefObject)
GetNextControl(Control, Boolean)

擷取子控制項定位順序中前後的下一個控制項。

(繼承來源 Control)
GetPreferredSize(Size)

擷取可容納控制項之矩形區域的大小。

(繼承來源 Control)
GetScaledBounds(Rectangle, SizeF, BoundsSpecified)

擷取縮放控制項的範圍。

(繼承來源 Control)
GetService(Type)

傳回表示 Component 或其 Container 所提供之服務的物件。

(繼承來源 Component)
GetStyle(ControlStyles)

擷取控制項指定控制項樣式位元的值。

(繼承來源 Control)
GetTabRect(Int32)

傳回這個索引標籤控制項中指定之索引標籤的周框 (Bounding Rectangle)。

GetToolTipText(Object)

取得所指定 TabPage 的工具提示。

GetTopLevel()

判斷控制項是否為最上層控制項。

(繼承來源 Control)
GetType()

取得目前執行個體的 Type

(繼承來源 Object)
Hide()

對使用者隱藏控制項。

(繼承來源 Control)
InitializeLifetimeService()
已淘汰.

取得存留期服務物件,以控制這個執行個體的存留期原則。

(繼承來源 MarshalByRefObject)
InitLayout()

在控制項加入其他容器後呼叫。

(繼承來源 Control)
Invalidate()

讓控制項的整個介面失效,並重新繪製控制項。

(繼承來源 Control)
Invalidate(Boolean)

使控制項的特定區域失效,並且造成傳送繪製訊息至控制項。 選擇性使指派至控制項的子控制項失效。

(繼承來源 Control)
Invalidate(Rectangle)

使控制項的指定區域失效 (將它加入控制項的更新區域,而這個區域會在下一個繪製作業中重新繪製),並使繪製訊息傳送至控制項。

(繼承來源 Control)
Invalidate(Rectangle, Boolean)

使控制項的指定區域失效 (將它加入控制項的更新區域,而這個區域會在下一個繪製作業中重新繪製),並使繪製訊息傳送至控制項。 選擇性使指派至控制項的子控制項失效。

(繼承來源 Control)
Invalidate(Region)

使控制項的指定區域失效 (將它加入控制項的更新區域,而這個區域會在下一個繪製作業中重新繪製),並使繪製訊息傳送至控制項。

(繼承來源 Control)
Invalidate(Region, Boolean)

使控制項的指定區域失效 (將它加入控制項的更新區域,而這個區域會在下一個繪製作業中重新繪製),並使繪製訊息傳送至控制項。 選擇性使指派至控制項的子控制項失效。

(繼承來源 Control)
Invoke(Action)

在擁有控制項基礎視窗控制代碼的執行緒上執行指定的委派。

(繼承來源 Control)
Invoke(Delegate)

在擁有控制項基礎視窗控制代碼的執行緒上執行指定的委派。

(繼承來源 Control)
Invoke(Delegate, Object[])

在擁有控制項基礎視窗控制代碼的執行緒上,以指定的引數清單執行指定的委派。

(繼承來源 Control)
Invoke<T>(Func<T>)

在擁有控制項基礎視窗控制代碼的執行緒上執行指定的委派。

(繼承來源 Control)
InvokeGotFocus(Control, EventArgs)

引發指定之控制項的 GotFocus 事件。

(繼承來源 Control)
InvokeLostFocus(Control, EventArgs)

引發指定之控制項的 LostFocus 事件。

(繼承來源 Control)
InvokeOnClick(Control, EventArgs)

引發指定之控制項的 Click 事件。

(繼承來源 Control)
InvokePaint(Control, PaintEventArgs)

引發指定之控制項的 Paint 事件。

(繼承來源 Control)
InvokePaintBackground(Control, PaintEventArgs)

引發指定之控制項的 PaintBackground 事件。

(繼承來源 Control)
IsInputChar(Char)

判斷字元是否為控制項辨認的輸入字元。

(繼承來源 Control)
IsInputKey(Keys)

判斷指定的按鍵是標準輸入按鍵或需要前置處理的特殊按鍵。

LogicalToDeviceUnits(Int32)

將邏輯 DPI 值轉換為它的對等 DeviceUnit DPI 值。

(繼承來源 Control)
LogicalToDeviceUnits(Size)

針對目前的 DPI 調整大小,並四捨五入為最接近的寬度和高度整數值,以將大小從邏輯轉換成裝置單位。

(繼承來源 Control)
MemberwiseClone()

建立目前 Object 的淺層複製。

(繼承來源 Object)
MemberwiseClone(Boolean)

建立目前 MarshalByRefObject 物件的淺層複本。

(繼承來源 MarshalByRefObject)
NotifyInvalidate(Rectangle)

引發 Invalidated 事件,包含要失效的指定控制項區域。

(繼承來源 Control)
OnAutoSizeChanged(EventArgs)

引發 AutoSizeChanged 事件。

(繼承來源 Control)
OnBackColorChanged(EventArgs)

引發 BackColorChanged 事件。

(繼承來源 Control)
OnBackgroundImageChanged(EventArgs)

引發 BackgroundImageChanged 事件。

(繼承來源 Control)
OnBackgroundImageLayoutChanged(EventArgs)

引發 BackgroundImageLayoutChanged 事件。

(繼承來源 Control)
OnBindingContextChanged(EventArgs)

引發 BindingContextChanged 事件。

(繼承來源 Control)
OnCausesValidationChanged(EventArgs)

引發 CausesValidationChanged 事件。

(繼承來源 Control)
OnChangeUICues(UICuesEventArgs)

引發 ChangeUICues 事件。

(繼承來源 Control)
OnClick(EventArgs)

引發 Click 事件。

(繼承來源 Control)
OnClientSizeChanged(EventArgs)

引發 ClientSizeChanged 事件。

(繼承來源 Control)
OnContextMenuChanged(EventArgs)

引發 ContextMenuChanged 事件。

(繼承來源 Control)
OnContextMenuStripChanged(EventArgs)

引發 ContextMenuStripChanged 事件。

(繼承來源 Control)
OnControlAdded(ControlEventArgs)

引發 ControlAdded 事件。

(繼承來源 Control)
OnControlRemoved(ControlEventArgs)

引發 ControlRemoved 事件。

(繼承來源 Control)
OnCreateControl()

引發 CreateControl() 方法。

(繼承來源 Control)
OnCursorChanged(EventArgs)

引發 CursorChanged 事件。

(繼承來源 Control)
OnDataContextChanged(EventArgs)

管理一組相關的索引標籤頁。

(繼承來源 Control)
OnDeselected(TabControlEventArgs)

引發 Deselected 事件。

OnDeselecting(TabControlCancelEventArgs)

引發 Deselecting 事件。

OnDockChanged(EventArgs)

引發 DockChanged 事件。

(繼承來源 Control)
OnDoubleClick(EventArgs)

引發 DoubleClick 事件。

(繼承來源 Control)
OnDpiChangedAfterParent(EventArgs)

引發 DpiChangedAfterParent 事件。

(繼承來源 Control)
OnDpiChangedBeforeParent(EventArgs)

引發 DpiChangedBeforeParent 事件。

(繼承來源 Control)
OnDragDrop(DragEventArgs)

引發 DragDrop 事件。

(繼承來源 Control)
OnDragEnter(DragEventArgs)

引發 DragEnter 事件。

(繼承來源 Control)
OnDragLeave(EventArgs)

引發 DragLeave 事件。

(繼承來源 Control)
OnDragOver(DragEventArgs)

引發 DragOver 事件。

(繼承來源 Control)
OnDrawItem(DrawItemEventArgs)

引發 DrawItem 事件。

OnEnabledChanged(EventArgs)

引發 EnabledChanged 事件。

(繼承來源 Control)
OnEnter(EventArgs)

引發 EnterTabControl 事件。

OnEnter(EventArgs)

引發 Enter 事件。

(繼承來源 Control)
OnFontChanged(EventArgs)

引發 FontChanged 事件。

OnForeColorChanged(EventArgs)

引發 ForeColorChanged 事件。

(繼承來源 Control)
OnGiveFeedback(GiveFeedbackEventArgs)

引發 GiveFeedback 事件。

(繼承來源 Control)
OnGotFocus(EventArgs)

管理一組相關的索引標籤頁。

OnGotFocus(EventArgs)

引發 GotFocus 事件。

(繼承來源 Control)
OnHandleCreated(EventArgs)

這個成員會覆寫 OnHandleCreated(EventArgs)

OnHandleDestroyed(EventArgs)

引發 HandleDestroyed 事件。

OnHelpRequested(HelpEventArgs)

引發 HelpRequested 事件。

(繼承來源 Control)
OnImeModeChanged(EventArgs)

引發 ImeModeChanged 事件。

(繼承來源 Control)
OnInvalidated(InvalidateEventArgs)

引發 Invalidated 事件。

(繼承來源 Control)
OnKeyDown(KeyEventArgs)

引發 KeyDown 事件。

OnKeyPress(KeyPressEventArgs)

引發 KeyPress 事件。

(繼承來源 Control)
OnKeyUp(KeyEventArgs)

引發 KeyUp 事件。

(繼承來源 Control)
OnLayout(LayoutEventArgs)

引發 Layout 事件。

(繼承來源 Control)
OnLeave(EventArgs)

引發 LeaveTabControl 事件。

OnLeave(EventArgs)

引發 Leave 事件。

(繼承來源 Control)
OnLocationChanged(EventArgs)

引發 LocationChanged 事件。

(繼承來源 Control)
OnLostFocus(EventArgs)

管理一組相關的索引標籤頁。

OnLostFocus(EventArgs)

引發 LostFocus 事件。

(繼承來源 Control)
OnMarginChanged(EventArgs)

引發 MarginChanged 事件。

(繼承來源 Control)
OnMouseCaptureChanged(EventArgs)

引發 MouseCaptureChanged 事件。

(繼承來源 Control)
OnMouseClick(MouseEventArgs)

引發 MouseClick 事件。

(繼承來源 Control)
OnMouseDoubleClick(MouseEventArgs)

引發 MouseDoubleClick 事件。

(繼承來源 Control)
OnMouseDown(MouseEventArgs)

引發 MouseDown 事件。

(繼承來源 Control)
OnMouseEnter(EventArgs)

引發 MouseEnter 事件。

(繼承來源 Control)
OnMouseHover(EventArgs)

引發 MouseHover 事件。

(繼承來源 Control)
OnMouseLeave(EventArgs)

引發 MouseLeave 事件。

(繼承來源 Control)
OnMouseMove(MouseEventArgs)

引發 MouseMove 事件。

(繼承來源 Control)
OnMouseUp(MouseEventArgs)

引發 MouseUp 事件。

(繼承來源 Control)
OnMouseWheel(MouseEventArgs)

引發 MouseWheel 事件。

(繼承來源 Control)
OnMove(EventArgs)

引發 Move 事件。

(繼承來源 Control)
OnNotifyMessage(Message)

將 Windows 訊息通知控制項。

(繼承來源 Control)
OnPaddingChanged(EventArgs)

引發 PaddingChanged 事件。

(繼承來源 Control)
OnPaint(PaintEventArgs)

引發 Paint 事件。

(繼承來源 Control)
OnPaintBackground(PaintEventArgs)

繪製控制項的背景。

(繼承來源 Control)
OnParentBackColorChanged(EventArgs)

當控制項容器的 BackColorChanged 屬性值變更時,會引發 BackColor 事件。

(繼承來源 Control)
OnParentBackgroundImageChanged(EventArgs)

當控制項容器的 BackgroundImageChanged 屬性值變更時,會引發 BackgroundImage 事件。

(繼承來源 Control)
OnParentBindingContextChanged(EventArgs)

當控制項容器的 BindingContextChanged 屬性值變更時,會引發 BindingContext 事件。

(繼承來源 Control)
OnParentChanged(EventArgs)

引發 ParentChanged 事件。

(繼承來源 Control)
OnParentCursorChanged(EventArgs)

引發 CursorChanged 事件。

(繼承來源 Control)
OnParentDataContextChanged(EventArgs)

管理一組相關的索引標籤頁。

(繼承來源 Control)
OnParentEnabledChanged(EventArgs)

當控制項容器的 EnabledChanged 屬性值變更時,會引發 Enabled 事件。

(繼承來源 Control)
OnParentFontChanged(EventArgs)

當控制項容器的 FontChanged 屬性值變更時,會引發 Font 事件。

(繼承來源 Control)
OnParentForeColorChanged(EventArgs)

當控制項容器的 ForeColorChanged 屬性值變更時,會引發 ForeColor 事件。

(繼承來源 Control)
OnParentRightToLeftChanged(EventArgs)

當控制項容器的 RightToLeftChanged 屬性值變更時,會引發 RightToLeft 事件。

(繼承來源 Control)
OnParentVisibleChanged(EventArgs)

當控制項容器的 VisibleChanged 屬性值變更時,會引發 Visible 事件。

(繼承來源 Control)
OnPreviewKeyDown(PreviewKeyDownEventArgs)

引發 PreviewKeyDown 事件。

(繼承來源 Control)
OnPrint(PaintEventArgs)

引發 Paint 事件。

(繼承來源 Control)
OnQueryContinueDrag(QueryContinueDragEventArgs)

引發 QueryContinueDrag 事件。

(繼承來源 Control)
OnRegionChanged(EventArgs)

引發 RegionChanged 事件。

(繼承來源 Control)
OnResize(EventArgs)

這個成員會覆寫 OnResize(EventArgs)

OnRightToLeftChanged(EventArgs)

引發 RightToLeftChanged 事件。

(繼承來源 Control)
OnRightToLeftLayoutChanged(EventArgs)

引發 RightToLeftLayoutChanged 事件。

OnSelected(TabControlEventArgs)

引發 Selected 事件。

OnSelectedIndexChanged(EventArgs)

引發 SelectedIndexChanged 事件。

OnSelecting(TabControlCancelEventArgs)

引發 Selecting 事件。

OnSizeChanged(EventArgs)

引發 SizeChanged 事件。

(繼承來源 Control)
OnStyleChanged(EventArgs)

這個成員會覆寫 OnStyleChanged(EventArgs)

OnSystemColorsChanged(EventArgs)

引發 SystemColorsChanged 事件。

(繼承來源 Control)
OnTabIndexChanged(EventArgs)

引發 TabIndexChanged 事件。

(繼承來源 Control)
OnTabStopChanged(EventArgs)

引發 TabStopChanged 事件。

(繼承來源 Control)
OnTextChanged(EventArgs)

引發 TextChanged 事件。

(繼承來源 Control)
OnValidated(EventArgs)

引發 Validated 事件。

(繼承來源 Control)
OnValidating(CancelEventArgs)

引發 Validating 事件。

(繼承來源 Control)
OnVisibleChanged(EventArgs)

引發 VisibleChanged 事件。

(繼承來源 Control)
PerformLayout()

強制控制項將配置邏輯套用至其所有子控制項。

(繼承來源 Control)
PerformLayout(Control, String)

強制控制項將配置邏輯套用至其所有子控制項。

(繼承來源 Control)
PointToClient(Point)

將指定的螢幕點的位置計算為工作區座標 (Client Coordinate)。

(繼承來源 Control)
PointToScreen(Point)

將指定的工作區點的位置計算為螢幕座標。

(繼承來源 Control)
PreProcessControlMessage(Message)

先於訊息迴圈中前置處理鍵盤或輸入訊息後,再分派這些訊息。

(繼承來源 Control)
PreProcessMessage(Message)

先於訊息迴圈中前置處理鍵盤或輸入訊息後,再分派這些訊息。

(繼承來源 Control)
ProcessCmdKey(Message, Keys)

處理命令按鍵。

(繼承來源 Control)
ProcessDialogChar(Char)

處理對話方塊字元。

(繼承來源 Control)
ProcessDialogKey(Keys)

處理對話方塊按鍵。

(繼承來源 Control)
ProcessKeyEventArgs(Message)

處理按鍵訊息,並產生適當的控制項事件。

(繼承來源 Control)
ProcessKeyMessage(Message)

處理鍵盤訊息。

(繼承來源 Control)
ProcessKeyPreview(Message)

預覽鍵盤訊息。

ProcessMnemonic(Char)

處理助憶鍵字元。

(繼承來源 Control)
RaiseDragEvent(Object, DragEventArgs)

引發適當的拖曳事件。

(繼承來源 Control)
RaiseKeyEvent(Object, KeyEventArgs)

引發適當的按鍵事件。

(繼承來源 Control)
RaiseMouseEvent(Object, MouseEventArgs)

引發適當的滑鼠事件。

(繼承來源 Control)
RaisePaintEvent(Object, PaintEventArgs)

引發適當的繪製事件。

(繼承來源 Control)
RecreateHandle()

強制重新建立控制項的控制代碼。

(繼承來源 Control)
RectangleToClient(Rectangle)

以工作區座標計算指定的螢幕矩形大小和位置。

(繼承來源 Control)
RectangleToScreen(Rectangle)

以螢幕座標計算指定的工作區矩形大小和位置。

(繼承來源 Control)
Refresh()

強制控制項使其工作區失效,並且立即重繪其本身和任何子控制項。

(繼承來源 Control)
RemoveAll()

從這個索引標籤控制項移除所有索引標籤頁和額外的控制項。

RescaleConstantsForDpi(Int32, Int32)

提供在發生 DPI 變更時用來重新調整控制項的常數。

(繼承來源 Control)
ResetBackColor()

重設 BackColor 屬性為其預設值。

(繼承來源 Control)
ResetBindings()

使得繫結至 BindingSource 的控制項重新讀取清單中的所有項目,並重新整理其顯示的值。

(繼承來源 Control)
ResetCursor()

重設 Cursor 屬性為其預設值。

(繼承來源 Control)
ResetFont()

重設 Font 屬性為其預設值。

(繼承來源 Control)
ResetForeColor()

重設 ForeColor 屬性為其預設值。

(繼承來源 Control)
ResetImeMode()

重設 ImeMode 屬性為其預設值。

(繼承來源 Control)
ResetMouseEventArgs()

重設控制項來處理 MouseLeave 事件。

(繼承來源 Control)
ResetRightToLeft()

重設 RightToLeft 屬性為其預設值。

(繼承來源 Control)
ResetText()

Text 屬性重設為其預設值 (Empty)。

(繼承來源 Control)
ResumeLayout()

繼續平常的配置邏輯。

(繼承來源 Control)
ResumeLayout(Boolean)

繼續平常的配置邏輯,選擇性地強制暫止配置要求的立即配置。

(繼承來源 Control)
RtlTranslateAlignment(ContentAlignment)

將指定的 ContentAlignment 轉換為適當的 ContentAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateAlignment(HorizontalAlignment)

將指定的 HorizontalAlignment 轉換為適當的 HorizontalAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateAlignment(LeftRightAlignment)

將指定的 LeftRightAlignment 轉換為適當的 LeftRightAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateContent(ContentAlignment)

將指定的 ContentAlignment 轉換為適當的 ContentAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateHorizontal(HorizontalAlignment)

將指定的 HorizontalAlignment 轉換為適當的 HorizontalAlignment,以支援由右至左的文字。

(繼承來源 Control)
RtlTranslateLeftRight(LeftRightAlignment)

將指定的 LeftRightAlignment 轉換為適當的 LeftRightAlignment,以支援由右至左的文字。

(繼承來源 Control)
Scale(Single)
已淘汰.
已淘汰.

縮放控制項和任何的子控制項。

(繼承來源 Control)
Scale(Single, Single)
已淘汰.
已淘汰.

縮放整個控制項和任何的子控制項。

(繼承來源 Control)
Scale(SizeF)

根據指定的縮放比例來縮放控制項和所有子控制項。

(繼承來源 Control)
ScaleBitmapLogicalToDevice(Bitmap)

發生 DPI 變更時,將邏輯點陣圖值調整為它的對等裝置單位值。

(繼承來源 Control)
ScaleControl(SizeF, BoundsSpecified)

縮放控制項的位置、大小、邊框間距和邊界。

(繼承來源 Control)
ScaleCore(Single, Single)

這個成員會覆寫 ScaleCore(Single, Single)

ScaleCore(Single, Single)

這個方法與這個類別無關。

(繼承來源 Control)
Select()

啟動控制項。

(繼承來源 Control)
Select(Boolean, Boolean)

啟動子控制項。 選擇性指定定位順序中要選取控制項的方向。

(繼承來源 Control)
SelectNextControl(Control, Boolean, Boolean, Boolean, Boolean)

啟動下一個控制項。

(繼承來源 Control)
SelectTab(Int32)

將具有指定之索引的索引標籤設為目前的索引標籤。

SelectTab(String)

將具有指定之名稱的索引標籤設為目前的索引標籤。

SelectTab(TabPage)

將指定之 TabPage 設為目前的索引標籤。

SendToBack()

將控制項傳送到疊置順序的後面。

(繼承來源 Control)
SetAutoSizeMode(AutoSizeMode)

設定值,表示已啟用控制項的 AutoSize 屬性時,該控制項的行為模式為何。

(繼承來源 Control)
SetBounds(Int32, Int32, Int32, Int32)

將控制項的範圍設定為指定的位置和大小。

(繼承來源 Control)
SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified)

將控制項的指定範圍設定為指定的位置和大小。

(繼承來源 Control)
SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified)

執行設定這個控制項的指定範圍的工作。

(繼承來源 Control)
SetClientSizeCore(Int32, Int32)

設定控制項工作區的大小。

(繼承來源 Control)
SetStyle(ControlStyles, Boolean)

將指定的 ControlStyles 旗標設定為 truefalse

(繼承來源 Control)
SetTopLevel(Boolean)

將控制項設定為最上層控制項。

(繼承來源 Control)
SetVisibleCore(Boolean)

將控制項設定為指定的可見狀態。

(繼承來源 Control)
Show()

對使用者顯示控制項。

(繼承來源 Control)
SizeFromClientSize(Size)

從控制項的工作區之高度和寬度判斷整個控制項的大小。

(繼承來源 Control)
SuspendLayout()

暫停控制項的配置邏輯。

(繼承來源 Control)
ToString()

傳回代表 TabControl 控制項的字串。

Update()

使控制項重繪其工作區內的失效區域。

(繼承來源 Control)
UpdateBounds()

以目前大小和位置更新控制項的範圍。

(繼承來源 Control)
UpdateBounds(Int32, Int32, Int32, Int32)

以指定的大小和位置更新控制項的範圍。

(繼承來源 Control)
UpdateBounds(Int32, Int32, Int32, Int32, Int32, Int32)

以指定的大小、位置和工作區大小更新控制項的範圍。

(繼承來源 Control)
UpdateStyles()

強制重新套用指派的樣式至控制項。

(繼承來源 Control)
UpdateTabSelection(Boolean)

此 API 支援此產品基礎結構,但無法直接用於程式碼之中。

Visible 集合中適當的 TabPage 控制項,將 TabPages 屬性設定為 true

UpdateZOrder()

以控制項的父控制項疊置順序更新控制項。

(繼承來源 Control)
WndProc(Message)

這個成員會覆寫 WndProc(Message)

事件

AutoSizeChanged

這個事件與這個類別無關。

(繼承來源 Control)
BackColorChanged

這個事件對這個控制項來說不具意義。

BackgroundImageChanged

發生於 BackgroundImage 屬性的值變更時。

BackgroundImageLayoutChanged

發生於 BackgroundImageLayout 屬性的值變更時。

BackgroundImageLayoutChanged

發生於 BackgroundImageLayout 屬性變更時。

(繼承來源 Control)
BindingContextChanged

發生於 BindingContext 屬性的值變更時。

(繼承來源 Control)
CausesValidationChanged

發生於 CausesValidation 屬性的值變更時。

(繼承來源 Control)
ChangeUICues

發生於焦點或鍵盤使用者介面 (UI) 提示變更時。

(繼承來源 Control)
Click

發生於按下控制項時。

(繼承來源 Control)
ClientSizeChanged

發生於 ClientSize 屬性的值變更時。

(繼承來源 Control)
ContextMenuChanged

發生於 ContextMenu 屬性的值變更時。

(繼承來源 Control)
ContextMenuStripChanged

發生於 ContextMenuStrip 屬性的值變更時。

(繼承來源 Control)
ControlAdded

發生於加入新控制項至 Control.ControlCollection 時。

(繼承來源 Control)
ControlRemoved

發生於從 Control.ControlCollection 移除控制項時。

(繼承來源 Control)
CursorChanged

發生於 Cursor 屬性的值變更時。

(繼承來源 Control)
DataContextChanged

發生於 DataContext 屬性的值變更時。

(繼承來源 Control)
Deselected

發生於取消選取索引標籤時。

Deselecting

發生於取消選取索引標籤以前,可讓處理常式取消索引標籤變更。

Disposed

Dispose() 方法的呼叫處置元件時,就會發生。

(繼承來源 Component)
DockChanged

發生於 Dock 屬性的值變更時。

(繼承來源 Control)
DoubleClick

發生於按兩下控制項時。

(繼承來源 Control)
DpiChangedAfterParent

發生於某個控制項的父控制項或表單已變更之後,以程式設計方式變更其 DPI 設定時。

(繼承來源 Control)
DpiChangedBeforeParent

發生於某個控制項的父控制項或表單發生 DPI 變更事件之前,以程式設計方式變更其 DPI 設定時。

(繼承來源 Control)
DragDrop

發生於拖放作業完成時。

(繼承來源 Control)
DragEnter

發生於將物件拖曳至控制項邊框時。

(繼承來源 Control)
DragLeave

發生於將物件拖出控制項界限時。

(繼承來源 Control)
DragOver

發生於將物件拖曳至控制項邊框上方時。

(繼承來源 Control)
DrawItem

如果 TabControl 屬性設定為 DrawMode,在 OwnerDrawFixed 需要繪製它的每一個索引標籤時發生。

EnabledChanged

發生於 Enabled 屬性值變更時。

(繼承來源 Control)
Enter

發生於輸入控制項時。

(繼承來源 Control)
FontChanged

發生在 Font 屬性值變更時。

(繼承來源 Control)
ForeColorChanged

發生於 ForeColor 屬性的值變更時。

GiveFeedback

發生於拖曳作業時。

(繼承來源 Control)
GotFocus

發生於控制項取得焦點時。

(繼承來源 Control)
HandleCreated

發生於為控制項建立控制代碼時。

(繼承來源 Control)
HandleDestroyed

發生於終結控制項的控制代碼時。

(繼承來源 Control)
HelpRequested

發生於使用者要求控制項的說明時。

(繼承來源 Control)
ImeModeChanged

發生於 ImeMode 屬性變更時。

(繼承來源 Control)
Invalidated

發生於控制項的顯示需要重新繪製時。

(繼承來源 Control)
KeyDown

發生於按下按鍵且焦點在控制項時。

(繼承來源 Control)
KeyPress

發生於 控制項有焦點,並按下字元空格鍵或退格鍵時。

(繼承來源 Control)
KeyUp

發生於放開按鍵且焦點在控制項時。

(繼承來源 Control)
Layout

發生於控制項應重新調整其子控制項位置時。

(繼承來源 Control)
Leave

發生於輸入焦點離開控制項時。

(繼承來源 Control)
LocationChanged

發生於 Location 屬性值變更時。

(繼承來源 Control)
LostFocus

發生於控制項遺失焦點時。

(繼承來源 Control)
MarginChanged

發生於控制項的邊界變更時。

(繼承來源 Control)
MouseCaptureChanged

發生於控制項遺失滑鼠捕捉時。

(繼承來源 Control)
MouseClick

發生於使用滑鼠按一下控制項時。

(繼承來源 Control)
MouseDoubleClick

發生於以滑鼠按兩下控制項時。

(繼承來源 Control)
MouseDown

發生於滑鼠指標位於控制項上並按下滑鼠按鍵時。

(繼承來源 Control)
MouseEnter

發生於滑鼠指標進入控制項時。

(繼承來源 Control)
MouseHover

發生於滑鼠指標停留在控制項上時。

(繼承來源 Control)
MouseLeave

發生於滑鼠指標離開控制項時。

(繼承來源 Control)
MouseMove

發生於滑鼠指標移至控制項上時。

(繼承來源 Control)
MouseUp

發生於滑鼠指標位於控制項上並放開滑鼠按鍵時。

(繼承來源 Control)
MouseWheel

發生於滑鼠滾輪移動且焦點在控制項時。

(繼承來源 Control)
Move

發生於控制項移動時。

(繼承來源 Control)
PaddingChanged

發生於控制項的邊框間距變更時。

(繼承來源 Control)
Paint

這個事件對這個控制項來說不具意義。

ParentChanged

發生在 Parent 屬性值變更時。

(繼承來源 Control)
PreviewKeyDown

發生於焦點位於這個控制項上時並按下鍵盤按鍵的 KeyDown 事件之前。

(繼承來源 Control)
QueryAccessibilityHelp

發生於 AccessibleObject 為協助工具應用程式提供說明時。

(繼承來源 Control)
QueryContinueDrag

發生於拖放作業時,讓拖曳來源能夠決定是否應取消拖放作業。

(繼承來源 Control)
RegionChanged

發生於 Region 屬性的值變更時。

(繼承來源 Control)
Resize

發生於重設控制項大小時。

(繼承來源 Control)
RightToLeftChanged

發生在 RightToLeft 屬性值變更時。

(繼承來源 Control)
RightToLeftLayoutChanged

發生於 RightToLeftLayout 屬性的值變更時。

Selected

發生於選取索引標籤時。

SelectedIndexChanged

發生於 SelectedIndex 屬性變更時。

Selecting

發生於選取索引標籤以前,可讓處理常式取消索引標籤變更。

SizeChanged

發生在 Size 屬性值變更時。

(繼承來源 Control)
StyleChanged

發生於控制項樣式變更時。

(繼承來源 Control)
SystemColorsChanged

發生於系統色彩變更時。

(繼承來源 Control)
TabIndexChanged

發生在 TabIndex 屬性值變更時。

(繼承來源 Control)
TabStopChanged

發生在 TabStop 屬性值變更時。

(繼承來源 Control)
TextChanged

發生於 Text 屬性的值變更時。

Validated

發生於控制項完成驗證時。

(繼承來源 Control)
Validating

發生於驗證控制項時。

(繼承來源 Control)
VisibleChanged

發生在 Visible 屬性值變更時。

(繼承來源 Control)

明確介面實作

IDropTarget.OnDragDrop(DragEventArgs)

引發 DragDrop 事件。

(繼承來源 Control)
IDropTarget.OnDragEnter(DragEventArgs)

引發 DragEnter 事件。

(繼承來源 Control)
IDropTarget.OnDragLeave(EventArgs)

引發 DragLeave 事件。

(繼承來源 Control)
IDropTarget.OnDragOver(DragEventArgs)

引發 DragOver 事件。

(繼承來源 Control)

適用於