ScrollIntoView属性不适用于Windows 10通用应用程序中的gridview

时间:2016-08-02 12:35:15

标签: c# gridview windows-runtime scrollview windows-10-universal

我在下面尝试了以下代码:

XAML代码:

<GridView x:Name="listgrid">
 <GridView.ItemTemplate>
   <DataTemplate>
     <StackPanel Margin="15,15,0,0">
       <Image Height="170" Width="170" Source="{Binding}"></Image>
     </StackPanel>
   </DataTemplate>
 </GridView.ItemTemplate>

Cs代码:

for (int i = 1; i < 50; i++)
{
   list.Add("ms-appx:///Images/A-aa.jpg");
}
listgrid.ItemsSource = list;
listgrid.ScrollIntoView(listgrid.Items[30]);

我上面的代码将视图滚动到我选中的项目,但它没有显示任何更改,我想我以错误的方式使用了这个属性,请帮我滚动到gridview位置。

3 个答案:

答案 0 :(得分:1)

我在MSDN中回复了您的同一问题:https://social.msdn.microsoft.com/Forums/windowsapps/en-US/d0a772b3-80b9-4a11-92a9-89963c29a52f/scrollintoview-property-not-working-for-gridview-in-windows-10-universal-app?forum=wpdevelop

你需要有更多东西来区分项目,例如,给每个图像命名,因为绑定到GridView的项目是相同的,ScrollIntoView默认找到第一个。

通常你需要为GridView设置一个height属性。

对于更复杂的要求,您可以参考一个好的主题: Windows 10 ScrollIntoView() is not scrolling to the items in the middle of a listview

答案 1 :(得分:0)

尝试订阅Loaded事件并在事件处理程序中调用ScrollIntoView

listgrid.Loaded += Listgrid_Loaded;

....
private void Listgrid_Loaded(object sender, RoutedEventArgs e)
{
    listgrid.ScrollIntoView(listgrid.Items[30]);
}

答案 2 :(得分:0)

试试这个

private void Gridview_Loaded(object sender, RoutedEventArgs e)
    {
        if (ShellPage.Current.SelectedRecItem != null)
        {
            this.gridview.SelectedItem = ShellPage.Current.SelectedRecItem;
            this.gridview.UpdateLayout();
            this.gridview.ScrollIntoView(ShellPage.Current.SelectedRecItem);
        }
    }