2015-07-10 34 views

回答

0

改進

由於我正在爲自己的應用程序,這裏是我細說了研究和解決方案:http://bit.ly/1L6EZ00。它涉及許多部分的變化,我認爲它看起來很酷。

,如果你只需要只:

這就像照片應用程序,我已經能夠實現大部分類似的行爲(這就像彩票測試):

<Page.TopAppBar > 
<CommandBar Margin="48,0,0,0" > 
    <CommandBar.PrimaryCommands> 
     <AppBarButton Icon="Globe" Label="Quick Launch" Command="{Binding QuickLaunch}"> 
     </AppBarButton> 
    </CommandBar.PrimaryCommands> 
</CommandBar> 
</Page.TopAppBar> 

現在SPLITVIEW:

<SplitView x:Name="Splitter" Margin="0,-48,0,0" CompactPaneLength="48" OpenPaneLength="240" ... 

窗格,然後像往常一樣的內容,例如:

<SemanticZoom Margin="0,48,0,0"> 

它與照片應用程序不完全相同,我使用的是10166 SDK,因此我認爲這是最準確的選項。