8.1 Universal App C#:如何在特定页面中打开pdf文件

时间:2015-07-16 08:56:28

标签: c# pdf win-universal-app

我在C#中开发了一个Windows通用应用程序(8.1),我想使用Adobe Pdf Reader(在我的应用程序中不呈现pdf)在特定页面打开本地pdf文件。

有人已经这样做了吗?经过几个小时的搜索似乎是不可能的:(

2 个答案:

答案 0 :(得分:0)

根据this PDF,通过Adobe Reader Command Line Reference找到,它是命令行

Acrobat.exe /A "page=123" "C:\example.pdf"

但桌面可执行文件的用途。它也适用于移动设备。

答案 1 :(得分:-1)

试试这个

选项1在应用中读取。 使用第三方PDF阅读器控件。 enter link description here

选项2:在pdf阅读器应用程序中打开pdf。

  var StorageFile= get you pdf here...;

  await Launcher.LaunchFileAsync(StorageFile);