March 2018
Intermediate to advanced
192 pages
4h 4m
English
Next, we will add another ViewModel to serve as the data context for DetailPage, as follows:
public class DetailViewModel : BaseViewModel { // ... }
public class DetailViewModel : BaseViewModel { TripLogEntry _entry; public TripLogEntry Entry { get { return _entry; } set { _entry = value; OnPropertyChanged (); } } // ... }