如何在Windows Phone 8应用程序中启动新的Word / Excel / PowerPoint文档?
这是我尝试过的,似乎不起作用:
await Launcher.LaunchUriAsync(new Uri("ms-word:"));
或
await Launcher.LaunchUriAsync(new Uri("ms-excel:"));
谁能看到我做错了什么?
答案 0 :(得分:0)
适用于WP8 这可能对你有帮助。
StorageFile pdfFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("demo.xls");
// Launch the file.
Windows.System.Launcher.LaunchFileAsync(pdfFile);