1

我正在玩 Windows 8 Store Application 的布局,并注意到VirtualizingStackPanel.CanVerticallyScrollProperty 使我的应用程序崩溃,但该属性应该可以通过this page工作。 在此处输入图像描述

很奇怪,即使是 Visual Studio 也能正确渲染: 在此处输入图像描述

我的 XAML 代码:

<common:LayoutAwarePage
    x:Name="pageRoot"
    x:Class="App5.GroupedItemsPage"
    DataContext="{Binding DefaultViewModel, RelativeSource={RelativeSource Self}}"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App5"
    xmlns:data="using:App5.Data"
    xmlns:common="using:App5.Common"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Page.Resources>
        <CollectionViewSource
            x:Name="groupedItemsViewSource"
            Source="{Binding Items}"
            IsSourceGrouped="false"
            ItemsPath="Items"
            d:Source="{Binding Items, Source={d:DesignInstance Type=data:DataGroup, IsDesignTimeCreatable=True}}"/>
    </Page.Resources>

    <Grid Style="{StaticResource LayoutRootStyle}">
        <GridView
            x:Name="itemGridView"
            AutomationProperties.AutomationId="ItemGridView"
            AutomationProperties.Name="Grouped Items"
            ItemsSource="{Binding Source={StaticResource groupedItemsViewSource}}"
            ItemTemplate="{StaticResource Standard250x250ItemTemplate}"
            SelectionMode="None"
            IsSwipeEnabled="false"
            IsItemClickEnabled="True"
            ItemClick="ItemView_ItemClick">

            <GridView.ItemsPanel>
                <ItemsPanelTemplate>                        
                    <VirtualizingStackPanel Orientation="Vertical" CanVerticallyScroll="False"/>
                </ItemsPanelTemplate>
            </GridView.ItemsPanel>
        </GridView>
    </Grid>
</common:LayoutAwarePage>

我想要实现的目标:Gridview 没有任何组和项目站在 2-3 行中,并且向右滚动。

------------
|1|4|7|10|
------------
|2|5|8|11|
------------
|3|6|9|12|
------------
4

0 回答 0