c# - Read and Display PDF file from Isolated Storage in a windows phone 8 app -


i want read pdf file isolated storage , display in pdf viewer. knowledge windows phone 8 doesnt not have pdf control. there third party control can use? or there other way display pdf file in windows phone 8 app.

you have 3 routes:

  1. launch pdf, cause opened in application
  2. pay implemented control, such this one. note how bundle bunch of stuff together, won't pdf viewer
  3. make own pdf viewer, hardest way.

edit: how launch app associated file:

storagefolder folder = applicationdata.current.localfolder; storagefile file = await folder.getfileasync(<filename>); launcher.launchefileasync(file); 

you can call wherever need it.


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

php - MySQLi multi_query results for later use -