I was trying to add App Bar in my Windows Phone Universal app. Here is the code that I have written on my Project:
<Page.BottomAppBar>
<CommandBar>
<AppBarButton Icon="Accept" Label="AppBarButton"/>
<AppBarButton Icon="Cancel" Label="AppBarButton"/>
</CommandBar>
</Page.BottomAppBar>
The App bar is showing properly in my Windows Phone and Windows Phone Emulator. But the problem that I faced is when I deployed the Windows version to the Local Machine and Simulator, there was no App Bar visible.
I have also tried the TopAppBar. The result was the same. Is there any way to add the App Bar which will work for both the Windows Phone and Local Machine?
Thanks in advance. :)