【silverlight的简单问题】
<UserControl x:Class="SA6.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="800" > <Grid x:Name="LayoutRoot" Background="red"> <Grid.RowDefinitions> <RowDefinition Height="48*" /> <RowDefinition Height="50*" /> <RowDefinition Height="202*" /> </Grid.RowDefinitions> <StackPanel Orientation="Horizontal" Grid.Row="0" Background="BurlyWood" HorizontalAlignment="Center" VerticalAlignment="Top" Height="50" Width="800" Grid.RowSpan="2"> <TextBlock Height="23" Width="150"> <TextBlock.Text>我是textblock3</TextBlock.Text> </TextBlock> <TextBlock Text="我是textblock2" Height="23" Width="150"></TextBlock> </StackPanel> <Grid VerticalAlignment="Top" HorizontalAlignment="Center" Height="50" Width="800" Background="Aqua" Grid.Row="1"> </Grid> </Grid></UserControl>
<ScrollViewer x:Name="PageScrollViewer" Style="{StaticResource PageScrollViewerStyle}" VerticalScrollBarVisibility="Visible" Background="White">
<Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /></Grid.RowDefinitions>
[解决办法]