I have this bug in my solution:
Exception
An unhandled exception of type 'System.NullReferenceException' occurred in AppBarUtils.dll
XAML
<controls:Pivot Background="#FF10662B" Foreground="White" BorderBrush="Black" >
<i:Interaction.Triggers>
<abu:SelectedPivotItemChangedTrigger>
<abu:SwitchAppBarAction>
<abu:AppBar Id="0">
<abu:AppBar.MenuItems>
<abu:AppBarMenuItem Text="Załóż konto" Command="{Binding
NavigateCommand,Mode=TwoWay}"/>
</abu:AppBar.MenuItems>
<abu:AppBarButton IconUri="{Binding AddButtonIcon}"
Text="Navigation" >
<ec:NavigateToPageAction TargetPage="/LoginPage.xaml"/>
</abu:AppBarButton>
</abu:AppBar>
</abu:SwitchAppBarAction>
</abu:SelectedPivotItemChangedTrigger>
</i:Interaction.Triggers>
<--rest code with other pivots -->
</phone:PhoneApplicationPage>
Maybe I can use another way use navigation to page? How I can navigate to different page with mvvm?
You can create ApplicationBar for certain pivot items of pivot page like this using id.If id =0,it will take automatically pivot Page(Item) 0 .By using this,you can choose which all AppBars has to be in whole pivot pages and in selective pivot pages(Items).
For navigation using mvvm,you can use messenger.
If you are using MVVM architecture,then you can pass navigationPage after registering using Messenger. Create a model class (say NavigateToPageMessage) with a string(say PageName) variable. You want to pass string from homepage.xaml to newpage.xaml,then in Homepage viewmodel just send the message like this under the command you binded (say HomeNavigationCommand)
In the newpage Viewmodel,you should register the messenger like this,
//Assuming your views are in View Folder