When I want a multiline textBox in WPF, I keep thinking of the MultiLine property, which is only used in Winforms.
So here's a note-to-self:
<TextBox Height="40" AcceptsReturn="True" VerticalScrollBarVisibility="Auto" TextWrapping="Wrap" />