March 2018
Intermediate to advanced
192 pages
4h 4m
English
Finally, we will need to add a ViewModel for NewEntryPage, as follows:
public class NewEntryViewModel : BaseViewModel { // ... }
public class NewEntryViewModel : BaseViewModel { string _title; public string Title { get { return _title; } set { _title = value; OnPropertyChanged(); } } double _latitude; public double Latitude { get { return _latitude; } set { _latitude = value; OnPropertyChanged(); } } double _longitude; ...