在Windows 10 uwp应用程序中,Hub节头不随hubsection移动

时间:2016-02-04 10:45:10

标签: c# windows-10 windows-10-mobile windows-10-universal windows-10-desktop

我为windows 10应用实现了hub部分,这是我的代码

<Hub x:Name="mainhub" IsZoomedInView="True">
<Hub.Header>
    <StackPanel Orientation="Horizontal" Margin="0,0,0,0">
       <Image x:Name="logo" Width="60" Height="80" Margin="10,0,0,0" Source="/Images/Panorama/Phone/Logo.png"/>
       <Image x:Name="imgtitle" Width="815" Height="140" Margin="10,10,0,0" Source="/Images/Panorama/Phone/Title.png"/>
    </StackPanel>
</Hub.Header>
<HubSection x:Name="hubsection_toprated">
 <HubSection.Header>
     <TextBlock x:Name="tblkToprated" Text="top rated"/>
 </HubSection.Header>
<HubSection>
<HubSection x:Name="hubsection">
 <HubSection.Header>
     <TextBlock x:Name="tblkToprated" Text="Recent rated"/>
 </HubSection.Header>
<HubSection>

通过在Windows 8.1应用程序中使用此代码,hubheader正在移动hubsection,就像来到windows 10应用程序hubheader没有移动hubsections ..有任何替代方案..

0 个答案:

没有答案