I have my report viewer in a telerik child window and I want to resize the reportviewer based on the size of the child window.
The width of the report viewer will resize automatically when nothing is set. The Height will continue down the page to where I can't see it.
I'm putting the report viewer in a grid. I can bind the height to initial Grid height, but it won't resize.
<
Grid
x:Name
=
"LayoutRoot"
Background
=
"White"
>
<
my:ReportViewer
Margin
=
"2 5 2 5"
MinHeight
=
"600"
Name
=
"repViewer"
Height
=
"{Binding ElementName=LayoutRoot, Path=ActualHeight}"
/>
...