TabPage Constructors

Definition

Initializes a new instance of the TabPage class.

Overloads

TabPage()

Initializes a new instance of the TabPage class.

TabPage(String)

Initializes a new instance of the TabPage class and specifies the text for the tab.

TabPage()

Initializes a new instance of the TabPage class.

public:
 TabPage();
public TabPage ();
Public Sub New ()

Examples

The following code example creates a TabControl with one TabPage. The TabPage constructor instantiates tabPage1.

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

public:
   void MyTabs()
   {
      this->tabControl1 = gcnew TabControl;
      
      // Invokes the TabPage() constructor to create the tabPage1.
      this->tabPage1 = gcnew System::Windows::Forms::TabPage;
      this->tabControl1->Controls->Add( tabPage1 );
      this->Controls->Add( tabControl1 );
   }

   Form1()
   {
      MyTabs();
   }

};

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

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

    public void MyTabs()
    {
        this.tabControl1 = new TabControl();

        // Invokes the TabPage() constructor to create the tabPage1.
        this.tabPage1 = new System.Windows.Forms.TabPage();

        this.tabControl1.Controls.Add(tabPage1);
        this.Controls.Add(tabControl1);
    }

    public Form1()
    {
        MyTabs();
    }

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

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

    Public Sub MyTabs()
        Me.tabControl1 = New TabControl()

        ' Invokes the TabPage() constructor to create the tabPage1.
        Me.tabPage1 = New System.Windows.Forms.TabPage()

        Me.tabControl1.Controls.Add(tabPage1)
        Me.Controls.Add(tabControl1)
    End Sub

    Public Sub New()
        MyTabs()
    End Sub

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

Applies to

TabPage(String)

Initializes a new instance of the TabPage class and specifies the text for the tab.

public:
 TabPage(System::String ^ text);
public TabPage (string text);
public TabPage (string? text);
new System.Windows.Forms.TabPage : string -> System.Windows.Forms.TabPage
Public Sub New (text As String)

Parameters

text
String

The text for the tab.

Examples

This example creates a TabControl with a TabPage. The TabPage constructor accepts the myTabPage string as Text for tabPage1.

using namespace System::Drawing;
using namespace System::Windows::Forms;
public ref class Form1: public Form
{
private:
   TabControl^ tabControl1;
   TabPage^ tabPage1;
   void MyTabs()
   {
      this->tabControl1 = gcnew TabControl;
      System::String^ tabPageName = "myTabPage";
      
      // Constructs a TabPage with a TabPage::Text value.
      this->tabPage1 = gcnew TabPage( tabPageName );
      this->tabControl1->Controls->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 );
   }


public:
   Form1()
   {
      MyTabs();
   }

};

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

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

    private void MyTabs()
    {
        this.tabControl1 = new TabControl();
        string tabPageName = "myTabPage";

        // Constructs a TabPage with a TabPage.Text value.
        this.tabPage1 = new TabPage(tabPageName);

        this.tabControl1.Controls.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);
    }

    public Form1()
    {
        MyTabs();	
    }

    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

    Private Sub MyTabs()
        Me.tabControl1 = New TabControl()
        Dim tabPageName As String = "myTabPage"

        ' Constructs a TabPage with a TabPage.Text value.
        Me.tabPage1 = New TabPage(tabPageName)

        Me.tabControl1.Controls.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

    Public Sub New()
        MyTabs()
    End Sub

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

Remarks

The Text property is set to the value of the text parameter.

Applies to