Windows 10 Mobile中的Hub / HubSection

时间:2015-08-30 10:02:06

标签: c# xaml windows-10-mobile

我尝试将Windows 8.1应用程序迁移到Windows 10 Mobile(SDK 10240), 但是Hub控件在Windows Phone 8.1中不起作用。

中心部分太小或太大而且不适合移动屏幕宽度。

我没有找到任何解决问题的财产。

<Hub Background="White" Header="Header">

    <HubSection x:Uid="HubSection1" Header="Header1">
        <DataTemplate>
            <TextBlock Text="Content1" />
        </DataTemplate>
    </HubSection>
    <HubSection x:Uid="HubSection2" Header="Header2" >
        <DataTemplate>
            <TextBlock Text="Content2" />
        </DataTemplate>
    </HubSection>
</Hub>

我希望在Windows Phone 8.1中,Header1位于第一页,Header2位于第二页,等等......

1 个答案:

答案 0 :(得分:0)

我在移动设备上运行时创建了this Behavior以使Hub控件的行为与Windows Phone 8.1控件类似。

检查一下,告诉我它是否解决了你的问题。