TextBox Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the TextBox class.
public:
TextBox();
public TextBox ();
Public Sub New ()
Examples
The following code example creates a new instance of the TextBox control and assigns a string to the control's Text property.
public:
void CreateMyTextBoxControl()
{
// Create a new TextBox control using this constructor.
TextBox^ textBox1 = gcnew TextBox;
// Assign a string of text to the new TextBox control.
textBox1->Text = "Hello World!";
// Code goes here to add the control to the form's control collection.
}
public void CreateMyTextBoxControl()
{
// Create a new TextBox control using this constructor.
TextBox textBox1 = new TextBox();
// Assign a string of text to the new TextBox control.
textBox1.Text = "Hello World!";
// Code goes here to add the control to the form's control collection.
}
Public Sub CreateMyTextBoxControl()
' Create a new TextBox control using this constructor.
Dim textBox1 As New TextBox()
' Assign a string of text to the new TextBox control.
textBox1.Text = "Hello World!"
' Code goes here to add the control to the form's control collection.
End Sub
Remarks
The parent container control defines the color and font settings for the TextBox.
Applies to
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.