0

我有一个关于在我的 Windows Phone 8 C# 应用程序(在我的情况下为 file.txt 文件)中打开存储在 IsolatedStorage 中的文件并在集成在 WP 8 中的 Office 套件中打开它的问题。

我想出了这个:

 Windows.System.Launcher.LaunchUriAsync(new System.Uri("ms-word:" + (new Uri("file.txt", UriKind.Relative))));

它可以毫无问题地打开 Office Word,但它挂在“文件不存在”消息并退出。有什么建议吗?谢谢 :)

4

1 回答 1

0

你的 Uri 是错误的。应该是new Uri("ms-word:isostore:file.txt", UriKind.Absolute); 但是还是打不开文件。不知道为什么。

在此处输入图像描述

编辑:这是不可能的。您只能从 OneDrive 打开办公电子邮件附件或办公文档。

http://answers.microsoft.com/en-us/winphone/forum/wp8-wppersonal/open-word-and-excel-files-from-sd-card/23218c41-b72b-49df-9529-5e85a1912bc5

于 2014-06-08T17:07:39.307 回答