Partilhar via


Como: Definir o conteúdo de texto de um controle TextBox

This example shows how to use the Text property to set the initial text contents of a TextBox control.

NotaEmbora a Extensible Application Markup Language (XAML) poderia usar a versão do exemplo a <TextBox.Text> marcas ao redor do texto de cada botão TextBox conteúdo, não é necessário porque a TextBox se aplica a ContentPropertyAttribute atributo para o Text propriedade. For more information, see Visão geral do XAML (WPF).

Exemplo

<TextBox Name="tbSettingText">
  Initial text contents of the TextBox.
</TextBox>
tbSettingText.Text = "Initial text contents of the TextBox."
tbSettingText.Text = "Initial text contents of the TextBox.";

Consulte também

Conceitos

Visão geral sobre TextBox

Visão geral de RichTextBox