2
我正在開發Windows 10平臺的應用程序。 在開發此應用程序時,我遇到了CommandBar
高於SplitView
的問題。如何在SplitView下設置CommandBar?
如何在頁面上的控件下設置CommandBar
下SplitView
?
我正在開發Windows 10平臺的應用程序。 在開發此應用程序時,我遇到了CommandBar
高於SplitView
的問題。如何在SplitView下設置CommandBar?
如何在頁面上的控件下設置CommandBar
下SplitView
?
改進
由於我正在爲自己的應用程序,這裏是我細說了研究和解決方案: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,因此我認爲這是最準確的選項。