Hub Header消失

时间:2015-05-28 06:25:47

标签: c# xaml windows-phone-8.1

我正在创建一个带有中心页面的应用。这是相关的xaml:

 <Grid>
    <Hub Header="My App">
        <HubSection Header="My drops" x:Name="DropsSection">
            <DataTemplate>
                <ListView x:Name="DropsList" Loaded="DropsList_Loaded">
                </ListView>
            </DataTemplate>
        </HubSection>

        <HubSection x:Name="FriendsSection" Header="Friends">
            <DataTemplate>
                <ListView x:Name="FriendsList" Loaded="FriendsList_Loaded">

                </ListView>
            </DataTemplate>
        </HubSection>
    </Hub>

</Grid>

以下是设计师的样子:

Here's what it looks like

然而,当我在Lumia 520上运行它时,我看到了 - 标题丢失了!:

Hub header missing!

有没有人对问题是什么有任何想法?

1 个答案:

答案 0 :(得分:0)

您需要为每个hubsection提供一个width属性才能显示它 说width="200" 标题只会滚动到特定点。您确定要一个Hub Page Not Pivot页面吗?