Can some explain why my ReportViewer Height is not changing according the heigt of my RadWindow?
When I change the horizontal size the reportviewer changes as it should be. When I change my vertical heigt then it doesn't change?
For some reason the ReportViewer height of 475 stays. I have also changed this into * etc. but that won't help me?
When I change the horizontal size the reportviewer changes as it should be. When I change my vertical heigt then it doesn't change?
Header="Report window" WindowStartupLocation="CenterScreen" Top="-5" Width="550" Height="539" ResizeMode="CanResize">
<
Grid
x:Name
=
"LayoutRoot"
VerticalAlignment
=
"Stretch"
>
<
Grid.RowDefinitions
>
<!--<RowDefinition Height="478"/>-->
<
RowDefinition
Height
=
"*"
/>
<
RowDefinition
Height
=
"27"
/>
</
Grid.RowDefinitions
>
<
Telerik_ReportViewer_Silverlight:ReportViewer
x:Name
=
"ReportViewer"
HorizontalAlignment
=
"Stretch"
VerticalContentAlignment
=
"Stretch"
Height
=
"475"
Grid.Row
=
"0"
ReportServerUri
=
"../ReportService.svc"
Report
=
"GaSuiteReportLib.EmergencyReport, GaSuiteReportLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
ZoomPercent
=
"80"
VerticalAlignment
=
"Top"
/>
<
Button
x:Name
=
"OKButton"
Grid.Row
=
"1"
Content
=
"OK"
Click
=
"OKButton_Click"
Width
=
"75"
Height
=
"23"
HorizontalAlignment
=
"Right"
VerticalAlignment
=
"Bottom"
Margin
=
"0,0,0,3"
/>
</
Grid
>
For some reason the ReportViewer height of 475 stays. I have also changed this into * etc. but that won't help me?