0

现在我在 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 应用程序中打开了。

提前致谢。

4

1 回答 1

2

您应该能够仅使用文件激活从 Windows 8 Metro/Windows Store 应用程序打开 Word 文件。由于 .docx 或 .doc 文件已经与 Word 程序相关联,因此它应该将 Word 作为单独的进程启动并在 Word 中从您的应用程序中打开该文件。

但是,它不会在您的应用程序内运行 Word。这是不可能的。

于 2013-01-17T15:14:36.373 回答