PDF reader for WP7 [closed]
Are there any free PDF reader API's available for WP7? I nee开发者_如何学运维d to read and display a PDF file, just like how Acrobat reader does.
No, there's nothing built into Windows Phone 7 to display PDF files and I'm not aware of any free compatible libraries (that's not to say there isn't one). If you're able to host the PDF files online, then you can link to that and have the user use the Acrobat Reader
app to read it.
WebBrowserTask wbt = new WebBrowserTask();
wbt.Url = @"http:\\www.example.com\mypdffile.pdf
wbt.Show();
Check PDFSharp
精彩评论