如何在通用Windows平台(UWP)的任何控件中呈现MS-Word文件,而不是在单独的文件中打开它?

时间:2018-08-29 14:15:10

标签: c# uwp windows-10-universal uwp-xaml

我是Universal Windows Platform (UWP)的新手,我想在word (.docx)应用程序中打开一些UWP文件,而不是在MS Word的单独窗口中打开文件( PDF应用中已经有UWP个文件查看器)。我试图查找解决方案,但发现的只是在单独的窗口中打开文件。打开文件的代码是:

private async void ShowWordFile()
{
    var file = await ApplicationData.Current.LocalFolder.GetFileAsync("My.docx");

    if (file != null)
    {
        // Launch the retrieved file
        await Windows.System.Launcher.LaunchFileAsync(file);
    }
}

但是我想在UWP应用程序中显示文件的内容 (我是说,我想在{{1}中使用WORD Viewer })。

0 个答案:

没有答案