예제 #1
0
        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();
        }
예제 #2
0
 private void NavigateBack()
 {
     _navigationService.GoBack();
 }