如何在WP7中的ScrollViewer / ListBox中默认滚动位置

时间:2012-04-01 17:02:18

标签: windows-phone-7 xaml

我正在使用Panorama控件构建WP7应用程序。我对WP7很新,所以我可能会遗漏一些简单的东西。我的Panorama控件绑定到ViewModel,并且在运行时通过Web服务请求使用数据填充该ViewModel的属性时添加PanoramaItems。我想在每个PanoramaItem的顶部有一个包含刷新按钮等的部分。

我可以使用Style在ListBox的顶部添加一个项目,但是我希望将该项目从顶部滚动,直到用户将其拉下来。有没有办法在样式或模板中设置默认滚动位置?我已经阅读了一些使用listBox.ScrollToItem滚动到特定项目的示例,但这在我的测试应用程序中不起作用,或者在ScrollViewer上获取句柄并使用ScrollToVerticalOffset。

<phone:PhoneApplicationPage.Resources>
    <Style x:Key="StoryStyle" TargetType="ListBox">
        <Setter Property="Background" Value="Transparent"/>
        <Setter Property="Foreground" Value="{StaticResource PhoneForegroundBrush}"/>
        <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Disabled"/>
        <Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto"/>
        <Setter Property="BorderThickness" Value="0"/>
        <Setter Property="BorderBrush" Value="Transparent"/>
        <Setter Property="Padding" Value="0"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="ListBox">
                    <ScrollViewer x:Name="ScrollViewer" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Foreground="{TemplateBinding Foreground}" Padding="{TemplateBinding Padding}">
                        <StackPanel>
                            <Button Content="Refresh"></Button>
                            <ItemsPresenter/>
                        </StackPanel>
                    </ScrollViewer>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</phone:PhoneApplicationPage.Resources>

<Grid x:Name="LayoutRoot" Background="Transparent">
    <controls:Panorama ItemsSource="{Binding Programs}" x:Name="AllPrograms">
        <controls:Panorama.Title>
            <TextBlock></TextBlock>
        </controls:Panorama.Title>
        <controls:Panorama.HeaderTemplate>
            <DataTemplate>
                <TextBlock Text="{Binding Title}" />
            </DataTemplate>
        </controls:Panorama.HeaderTemplate>
        <controls:Panorama.ItemTemplate>
            <DataTemplate>
                <ListBox Margin="0,0,-12,0" ItemsSource="{Binding Stories}" Style="{StaticResource StoryStyle}">

                <ListBox.ItemTemplate>
                    <DataTemplate>
                        <StackPanel Margin="0,0,0,17" Width="432" Height="80">
                                <TextBlock Text="{Binding SensibleTitle}" TextWrapping="Wrap" />
                                <TextBlock><Run Text="{Binding Duration, StringFormat='hh\\:mm\\:ss'}"></Run><Run Text=", "/><Run Text="{Binding DisplayDate, StringFormat='MMMM dd, yyyy'}"/></TextBlock>
                        </StackPanel>
                    </DataTemplate>
                </ListBox.ItemTemplate>
            </ListBox>
            </DataTemplate>
        </controls:Panorama.ItemTemplate>
    </controls:Panorama>
</Grid>

1 个答案:

答案 0 :(得分:0)

尝试更改ListBox的SelectedIndex。