I am developing an app for sending some feedback.
Basically I\'m trying to make a TextBox for comments, but I\'m used to the WinForms MultiLine=tr
TextBox
MultiLine=tr
Contrary to @Andre Luus, setting Height="Auto" will not make the TextBox stretch. The solution I found was to set VerticalAlignment="Stretch"
Height="Auto"
VerticalAlignment="Stretch"