Silverlight:ScrollViewer的难度(再次)

时间:2010-11-03 20:03:38

标签: silverlight xaml windows-phone-7

2 个答案:

答案 0 :(得分:2)

试试这个

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

答案 1 :(得分:0)

它正确滚动但列表框的大小比页面大。尝试设置明确的大小。

           <StackPanel Orientation="Horizontal" Height="500">
            <TextBox x:Name="LoadingMessage"  Text="Loading..." Grid.Row="0" />
            <ListBox x:Name="StoryListBox" Grid.Row="0" >
                <ListBoxItem Content="a"></ListBoxItem>
                <ListBoxItem Content="b"></ListBoxItem>
                <ListBoxItem Content="c"></ListBoxItem>
                <ListBoxItem Content="d"></ListBoxItem>
                <ListBoxItem Content="e"></ListBoxItem>
                <ListBoxItem Content="f"></ListBoxItem>
                <ListBoxItem Content="g"></ListBoxItem>
                <ListBoxItem Content="h"></ListBoxItem>
                <ListBoxItem Content="i"></ListBoxItem>
                <ListBoxItem Content="j"></ListBoxItem>
                <ListBoxItem Content="k"></ListBoxItem>
                <ListBoxItem Content="l"></ListBoxItem>
                <ListBoxItem Content="1"></ListBoxItem>
                <ListBoxItem Content="2"></ListBoxItem>
                <ListBoxItem Content="3"></ListBoxItem>
                <ListBoxItem Content="4"></ListBoxItem>
                <ListBoxItem Content="5"></ListBoxItem>
                <ListBoxItem Content="6"></ListBoxItem>
                <ListBoxItem Content="7"></ListBoxItem>
                <ListBoxItem Content="8"></ListBoxItem>
                <ListBoxItem Content="9"></ListBoxItem>
                <ListBoxItem Content="10"></ListBoxItem>
                <ListBoxItem Content="11"></ListBoxItem>
                <ListBoxItem Content="12"></ListBoxItem>
                <ListBoxItem Content="13"></ListBoxItem>
                <ListBoxItem Content="14"></ListBoxItem>
            </ListBox>
           </StackPanel>