I have a DataGrid with RowDetailsTemplate that contains a DataGrid. The parent grid is placed in it's own row. The row is defined as
<RowDefinition Height="*" />
Usually this means the row will take the REST of the available hight and initialy it does. But if the DataGrid is too large for the space left on the screen, the buttom of the DataGird disaperas "under the screen" instead of getting a scrollbar.
I have tried to solve it by defining MaxHeight=400 for parent grid but even than, the parent grid is unlimited in it's length and still gets so long that it's buttom part is invisible.
Any ideas what to do about it?