我是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
})。