Comment : définir le texte d'un contrôle TextBox
Mise à jour : novembre 2007
Cet exemple montre comment utiliser la propriété Text pour définir le texte initial d'un contrôle TextBox.
Exemple
<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.";