このページが読み込まれると、RadSchedulerコントロールが画面に完全にレンダリングされないため、下半分が表示されません。ページウィンドウの残りのスペースに合わせてサイズを変更するにはどうすればよいですか?
<navigation:Page>
<Grid x:Name="LayoutRoot">
<Grid.RowDefinitions>
<RowDefinition Height="50" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<ria:DomainDataSource />
<TextBlock Grid.Row="0" Text="header row" />
<StackPanel Grid.Row="1">
<TextBlock Text="Label" />
<telerikScheduler:RadScheduler Height="Auto">
</telerikScheduler:RadScheduler>
</StackPanel>
</Grid>