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:
- launch pdf, cause opened in application
- pay implemented control, such this one. note how bundle bunch of stuff together, won't pdf viewer
- 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
Post a Comment