Skip to content

Instantly share code, notes, and snippets.

@tomwis
Last active October 1, 2017 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomwis/8937736669a2be796afb8b4e2e9bf1f5 to your computer and use it in GitHub Desktop.
Save tomwis/8937736669a2be796afb8b4e2e9bf1f5 to your computer and use it in GitHub Desktop.
public RelayCommand AddMonthCmd => new RelayCommand(async () =>
{
// w DashboardViewModel
await _navigationService.Navigate<MonthEditPage>();
});
public RelayCommand SaveCmd => new RelayCommand(async () =>
{
// w MonthEditViewModel - wracamy do Dashboardu
// zapisujemy...
await _navigationService.GoBack();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment