TextBox Конструктор
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Инициализирует новый экземпляр класса TextBox.
public:
TextBox();
public TextBox ();
Public Sub New ()
Примеры
В следующем примере кода создается новый экземпляр TextBox элемента управления и присваивается строка свойству элемента управления Text .
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
Комментарии
Родительский элемент управления контейнера определяет параметры цвета и шрифта для элемента TextBoxуправления .