Example #1
0
 public DetailViewModel(IMvxNavigationService Navigation, PostPresentation Post)
 {
     navigation = Navigation;
     this.Post  = Post;
 }
Example #2
0
 private void SelectTableItem(PostPresentation Post)
 {
     TagButtonVisible = false;
     Mvx.RegisterSingleton <PostPresentation>(Post);
     navigation.Navigate <DetailViewModel>();
 }