Quick TextBox Question
-
Good people, How do I enable a TextBox to allow empty returns. For example, when I press enter, it will allow a new line or blank lines if I press it multiple times. Sort of like what I did to get to this new line, I just pressed enter a few times. Thanks for any information you can provide. Blitz
-
Good people, How do I enable a TextBox to allow empty returns. For example, when I press enter, it will allow a new line or blank lines if I press it multiple times. Sort of like what I did to get to this new line, I just pressed enter a few times. Thanks for any information you can provide. Blitz
Set the following properties in your textbox
TextWrapping="Wrap" AcceptsReturn="True"
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
-
Set the following properties in your textbox
TextWrapping="Wrap" AcceptsReturn="True"
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
As Braveheart once said, "You can take our freedom but you'll never take our Hobnobs!" - Martin Hughes.
Thanks, I really appreciate it. Blitz