现在我在 Windows 8 Metro 应用程序中打开一个 Word 文档。我不知道这是否可能。但我在 Windows 8 Metro 应用程序中打开了 word 文档。例如:使用 iPad 在 gmail 中打开 word 文档。
这是我的代码,
string file = @"Assets\sample.docx";
var getFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(file);
if (getFile != null)
{
var success = await Windows.System.Launcher.LaunchFileAsync(getFile);
}
这是为word文件打开的。但我在 Windows 8 Metro 应用程序中打开了。
提前致谢。