TabPage Constructor (String^)
.NET Framework (current version)
Initializes a new instance of the TabPage class and specifies the text for the tab.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- text
-
Type:
System::String^
The text for the tab.
This example creates a TabControl with a TabPage. The TabPage constructor accepts the myTabPage string as Text for tabPage1.
Use the System.Drawing and System.Windows.Forms namespaces for this example.
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 ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: