private void Item_OnClick(object sender, ItemClickEventArgs e)
 {
     var clickedItem = (SaclopediaNavigationTopicEntity)e.ClickedItem;
     _lastSelectedItem = clickedItem;
     Locator.ViewModels.SaclopediaPageVm.NavigateToSaclopediaTopic.Execute(e);
     if (AdaptiveStates.CurrentState == NarrowState)
     {
         // Use "drill in" transition for navigating from master list to detail view
         App.RootFrame.Navigate(typeof(SaclopediaEntryPage), null, new DrillInNavigationTransitionInfo());
     }
     else
     {
         // Play a refresh animation when the user switches detail items.
         //EnableContentTransitions();
     }
 }
        private void Item_OnClick(object sender, ItemClickEventArgs e)
        {
            var clickedItem = (SaclopediaNavigationTopicEntity)e.ClickedItem;

            _lastSelectedItem = clickedItem;
            Locator.ViewModels.SaclopediaPageVm.NavigateToSaclopediaTopic.Execute(e);
            if (AdaptiveStates.CurrentState == NarrowState)
            {
                // Use "drill in" transition for navigating from master list to detail view
                App.RootFrame.Navigate(typeof(SaclopediaEntryPage), null, new DrillInNavigationTransitionInfo());
            }
            else
            {
                // Play a refresh animation when the user switches detail items.
                //EnableContentTransitions();
            }
        }