SplitView下如何设置CommandBar?
How to set CommandBar under SplitView?
我正在为 Windows 10 平台开发应用程序。
在开发此应用程序时,我 运行 遇到 CommandBar
高于 SplitView
的问题。
如何在页面控件下的 SplitView
下设置 CommandBar
?
改进
由于我是在为自己的应用程序制作,这里是我在这里详细说明的研究和解决方案: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 x:Name="Splitter" Margin="0,-48,0,0" CompactPaneLength="48" OpenPaneLength="240" ...
然后像往常一样窗格和内容,例如:
<SemanticZoom Margin="0,48,0,0">
它与照片应用程序不完全相同,我使用的是 10166 SDK,所以我认为这是最准确的选择。
我正在为 Windows 10 平台开发应用程序。
在开发此应用程序时,我 运行 遇到 CommandBar
高于 SplitView
的问题。
如何在页面控件下的 SplitView
下设置 CommandBar
?
改进
由于我是在为自己的应用程序制作,这里是我在这里详细说明的研究和解决方案: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 x:Name="Splitter" Margin="0,-48,0,0" CompactPaneLength="48" OpenPaneLength="240" ...
然后像往常一样窗格和内容,例如:
<SemanticZoom Margin="0,48,0,0">
它与照片应用程序不完全相同,我使用的是 10166 SDK,所以我认为这是最准确的选择。