0

Download pdf from webservice url and saved it local storage. Then i am n't show it within my application. I need solution to show pdf using third party tool for pdfviewer or create own pdfviewer using c# for windows phone

1 Answers1

1

You should use LaunchFileAsync to Open and read a pdf file which is saved in local storage.

  // Access the file.
    StorageFile pdfFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("file.pdf");

    // Launch the pdf file.
    Windows.System.Launcher.LaunchFileAsync(pdfFile);

Here you can know more about LaunchFileAsync.

Jaihind
  • 2,770
  • 1
  • 12
  • 19