在Windows Phone 8中,非常容易添加应用栏并对其进行管理,但是现在我测试新的Windows Phone 8.1 SDK来构建具有新地理围栏功能的项目,但是我不知道如何在应用中添加应用栏。

最佳答案

在Windows Phone 8.1中,我们可以使用BottomAppBar添加应用栏。通常我们使用CommandBar创建基本的BottomAppBar。 CommandBar包含两个集合:PrimaryCommandsSecondaryCommands,与Windows Phone 8中的shell:ApplicationBar.Buttonsshell:ApplicationBar.MenuItems相似。

请阅读此演示,我们创建一个带有两个按钮的CommandBar:ZoomOut和ZoomIn,以及两个menuItem:Test01和Test02:

<Page.BottomAppBar>
    <CommandBar IsSticky="True" x:Name="appBar">
        <CommandBar.PrimaryCommands>
            <AppBarButton Icon="ZoomOut" IsCompact="False" Label="ZoomOut"/>
            <AppBarButton Icon="ZoomIn" IsCompact="False" Label="ZoomIn"/>
        </CommandBar.PrimaryCommands>
        <CommandBar.SecondaryCommands>
            <AppBarButton Label="Test01"/>
            <AppBarButton Label="Test02"/>
        </CommandBar.SecondaryCommands>
    </CommandBar>
</Page.BottomAppBar>


编辑:现在代码是正确的!

关于.net - 如何在Windows Phone 8.1中添加AppBar,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23529527/

10-12 02:46