Windows Phone 8:自动启动* .pptx失败

时间:2013-08-07 14:19:13

标签: windows-phone-8 windows-phone file-association

我有这个代码用于在Windows Phone 8上启动文件:

string ppFile = @"Assets\Documents\test.txt";
var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(ppFile);
var success = await Windows.System.Launcher.LaunchFileAsync(file);

当我有一个* .txt文件时,windows phone 8正在启动它。但我想发布一个“example.pptx”文件,代码不起作用。是否存在PowerPoint文件的权限问题?

1 个答案:

答案 0 :(得分:0)

您指定的代码对于启动任何文件(txt或pptx)都是正确的。两种情况都可以正常工作。

您能否在解决方案资源管理器中验证pptx文件的Build Action是否设置为“Content”?添加txt文件时,默认为Content,但对于pptx,默认为None。将其调整为内容可能会解决您的问题。