I tried to follow and it works. add the following to the text box in xaml:
------
VerticalAlignment="Stretch"
HorizontalAlignment="Stretch"
Height="{Binding RelativeSource={RelativeSource FindAncestor, *AncestorType*={x:Type *Grid*}}, Path=ActualHeight}"
------
Here AncestorType is a container type containing a text field. In my case, it was the Grid. Also add margin, for example,
Margin="0,0,0,50"
to keep the distance from the border below.
============
oops , .