Esempio n. 1
0
 public ReadItemViewModel(SelfwinApp app, IAppNavigation navigation, ItemViewModel item)
 {
     this.App = app;
     this.Navigation = navigation;
     if (item != null)
     {
         Parameter = item;
     }
 }
Esempio n. 2
0
 public void OnItemSelected(ItemViewModel item)
 {
     this.Navigation.NavigateTo<ReadItemViewModel>(item);
 }