3

我想加载 PDF 文件以响应 Tapped 事件。

我将文件添加到我的项目(添加>现有项目),将“构建操作”设置为“内容”,将“复制到输出目录”设置为“如果更新则复制”

我在想我需要的代码可能是这样的:

async Task LoadTutorial()
{
    await Launcher.LaunchUriAsync(new Uri("what should be here to access the output folder?"));
}

如果我是对的,作为 Uri 我需要传递什么?否则,这是如何实现的?

更新

在相关说明中,要使用建议的方案将图像添加到 XAML,我认为这会起作用:

<Image Source="ms-appx:///assets/axXAndSpaceLogo.jpg"></Image>

...但事实并非如此。

更新 2

尝试打开 PDF 文件(位于项目的根目录中,而不是在子文件夹中):

async private void OpenTutorial()
{
    IStorageFolder folder = Windows.ApplicationModel.Package.Current.InstalledLocation;
    IStorageFile file = await folder.GetFileAsync("ms-appx:///PlatypusTutorial.pdf");
    await Launcher.LaunchFileAsync(file);
}

...导致这个运行时异常,在上面的第一行抛出:

在此处输入图像描述

更新 3

有了这个,改编自提供的链接:

var uri = new System.Uri("ms-appx:///ClayShannonResume.pdf");
var file = Windows.Storage.StorageFile.GetFileFromApplicationUriAsync(uri);
await Launcher.LaunchFileAsync(file);

...我得到编译时错误:

'Windows.System.Launcher.LaunchFileAsync(Windows.Storage.IStorageFile)' 的最佳重载方法匹配有一些无效参数

-和:

参数 1:无法从 'Windows.Foundation.IAsyncOperation' 转换为 'Windows.Storage.IStorageFile'

...在最后一行。

更新 4

根据 Lecrenski、Netherlands、Sanders 和 Ashely 的“Pro Windows 8 Programming”的第 76 页,这应该有效:

<Image Source="Assets/axXAndSpaceLogo.jpg" Stretch="None"></Image>

...(IOW,“ ms-appx:/// ”爵士乐是不必要的),它或多或少确实如此。在我的特殊情况下,对于我的(大)图像,我必须这样做:

<Image Source="Assets/axXAndSpaceLogo.jpg" Width="120" Height="80" HorizontalAlignment="Left"></Image>

如果没有宽度和高度设置,图像会显示得比犀牛大,并紧贴弹出窗口的右侧。

更新 5

我发现这可以打开 PDF 文件(“PlatypusTut.pdf”已添加到项目中,“构建操作”设置为“内容”,“复制到输出目录”设置为“如果较新则复制”):

IStorageFolder folder = Windows.ApplicationModel.Package.Current.InstalledLocation;
IStorageFile file = await folder.GetFileAsync("PlatypusTut.pdf");
bool success = await Launcher.LaunchFileAsync(file);
if (!success)
{
    MessageDialog dlgDone = new MessageDialog("Unable to open the Tutorial at this time. Try again later.");
    await dlgDone.ShowAsync();
}

...但我想知道这是否只能在本地设计时工作。当安装在用户的机器上时,这也能工作吗?IOW,只需将“PlatypusTut.pdf”传递给 GetFileAsync() 就足够了吗?

4

2 回答 2

4

使用 ms-appx 协议(例如 ms-appx:///assets/image.png )来引用应用程序包中的项目。请参阅如何加载文件资源 (XAML)

更新:

使用 GetFileFromApplicationUriAsync 和 ms-appx 在应用包中查找文件。如果文件被标记为内容并包含在应用程序包中,那么它在部署后将可用,而不仅仅是在调试器中。ms-appx:///PlatypusTut.pdf 将在应用程序包的根目录中找到 PlatypusTut.pdf。

StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///PlatypusTut.pdf"));
await Launcher.LaunchFileAsync(file);
于 2014-11-11T07:18:58.873 回答
1

我们是这样做的:

public async Task OpenResearchAsync(string path)
{
    if (path.ToLower().StartsWith("http://"))
    {
        await Launcher.LaunchUriAsync(new Uri(path));
    }
    else
    {
        IStorageFolder folder = Windows.ApplicationModel.Package.Current.InstalledLocation;
        IStorageFile file = await folder.GetFileAsync(path);
        await Launcher.LaunchFileAsync(file);
    }
}
于 2014-11-11T06:41:45.937 回答