TextBox
The TextBox presents an area for typed (keyboard) input. It can be for a single or multiple lines of input.
Useful Properties
You will probably use these properties most often:
| Property | Description |
|---|---|
Text | The current text in the input. |
PasswordChar | Hides any characters typed, and replacing them with the given character instead. |
Watermark | Appears as a faded hint whenever the input is empty. |
AcceptsReturn | Makes the input multi-line by allowing the user to enter line returns. A vertical scrollbar will appear if the content exceeds the height available. |
TextWrapping | Defines how horizontal line overflow will be handled. Options are: 'NoWrap', 'Wrap' and 'WrapWithOverflow'. |