2

このページが読み込まれると、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>

4

1 に答える 1

0

このようにしてみてください:-

<Grid x:Name="LayoutRoot">

    <Grid.RowDefinitions>
        <RowDefinition Height="50" />
        <RowDefinition Height="Auto" />
        <RowDefinition Height="*" />
    </Grid.RowDefinitions>

    <ria:DomainDataSource />

    <TextBlock Grid.Row="0" Text="header row" />

    <TextBlock Text="Label" Grid.Row="1" />                        

    <telerikScheduler:RadScheduler Grid.Row="2" />

</Grid>
于 2010-01-17T14:02:25.753 に答える