我目前正在构建一个 Windows 8 应用商店应用程序,并正在使用以下方法调用在 Word 客户端中打开一个文档。
await Windows.System.Launcher.LaunchFileAsync(Storagefile);
问题是当前正在从本地路径打开 Storagefile,即
D://document.docx
我希望能够直接从网络路径打开它,即
https://somepage/document.docx
但需要的是我不能在本地下载它,而只能直接从网页上启动它。
这可以做到吗?