次の方法で共有


TabControl コンストラクタ

TabControl クラスの新しいインスタンスを初期化します。

Public Sub New()
[C#]
public TabControl();
[C++]
public: TabControl();
[JScript]
public function TabControl();

使用例

[Visual Basic, C#, C++] 1 つの TabPage が配置された TabControl を作成する例を次に示します。 ctor コンストラクタは tabControl1 のインスタンスを作成しています。

[Visual Basic, C#, C++] この例では、 System.Windows.Forms 名前空間を使用します。

 
Imports System.Windows.Forms

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

    Public Sub MyTabs()

        ' Invokes the TabControl() constructor to create the tabControl1 object.
        Me.tabControl1 = New System.Windows.Forms.TabControl()

        ' Creates a new tab page and adds it to the tab control.
        Me.tabPage1 = New TabPage()

        Me.tabControl1.TabPages.Add(tabPage1)

        ' Adds the tab control to the form.    
        Me.Controls.Add(tabControl1)
    End Sub

    Public Sub New()
        MyTabs()
    End Sub

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

[C#] 
using System.Windows.Forms;

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

    public void MyTabs()
    {
        // Invokes the TabControl() constructor to create the tabControl1 object.
        this.tabControl1 = new System.Windows.Forms.TabControl();

        // Creates a new tab page and adds it to the tab control
        this.tabPage1 = new TabPage();
                
        this.tabControl1.TabPages.Add(tabPage1);

        // Adds the tab control to the form
        this.Controls.Add(tabControl1);
    }

    public Form1()
    {
        MyTabs();
    }

    static void Main() 
    {
        Application.Run(new Form1());
    }
}

[C++] 
using namespace System::Windows::Forms;

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

public:
    void MyTabs() {
        // Invokes the TabControl() constructor to create the tabControl1 object.
        this->tabControl1 = new System::Windows::Forms::TabControl();

        // Creates a new tab page and adds it to the tab control
        this->tabPage1 = new TabPage();

        this->tabControl1->TabPages->Add(tabPage1);

        // Adds the tab control to the form
        this->Controls->Add(tabControl1);
    }

    Form1() {
        MyTabs();
    }
};

int main() {
    Application::Run(new Form1());
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

TabControl クラス | TabControl メンバ | System.Windows.Forms 名前空間