Answers for "how to make a multi lined text box"

1

textbox multiline

<TextBox
  Name="tbMultiLine"
  TextWrapping="Wrap"
  AcceptsReturn="True"
  VerticalScrollBarVisibility="Visible"
>
  This TextBox will allow the user to enter multiple lines of text.  When the RETURN key is pressed, 
  or when typed text reaches the edge of the text box, a new line is automatically inserted.
</TextBox>
Posted by: Guest on October-11-2020

Code answers related to "how to make a multi lined text box"

Browse Popular Code Answers by Language