I have a menu that shows up and hides with transition effects:
The elements you see are navigating you to other pages.
So when i navigate to other page i do:
MenuButton.Tag = "MenuDisabled";
VisualStateManager.GoToState(this, "HideMenu", true);
NavigationService.Navigate(new Uri("/AboutPageAuthorized.xaml", UriKind.Relative));
But it happens that navigation is working faster than effect, so you will see it sliding till the middle and then fast dissapear - its annoying.
Is there a way to handle this effect breaking thing?