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>
這裏就是它看起來像在設計師
然而,當我在我的Lumia 520運行它,我看到這 - 頭部丟失!:
有沒有人對這個問題可能是什麼什麼想法?