Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
This example shows how to configure a TextBox control to not allow user input or modification.
Example
To prevent users from modifying the contents of a TextBox control, set the IsReadOnly attribute to true.
<TextBox
IsReadOnly="True"
>
The user may not modify the contents of this TextBox.
</TextBox>
The IsReadOnly attribute affects user input only; it does not affect text set in the Extensible Application Markup Language (XAML) description of a TextBox control, or text set programmatically through the Text property.
The default value of IsReadOnly is false.