private async void DeleteLocal() { var result = await DialogHost.Show(new ConfirmDeleteDialog(), "ContentDialog"); if (!(bool)result) { // delete got canceled return; } _fileService.RemoveFileFormat(File.Header.RecordId); _navigationService.GoBack(); }
private void NavigateBack() { _navigationService.GoBack(); }