0
現在我打開Windows 8 Metro應用程序中的word文檔。我不知道這是否可能。但我已經打開Windows 8 Metro應用程序中的word文檔。例如:使用iPad在Gmail中打開word文檔。在Windows 8地鐵應用程序中打開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應用程序。
在此先感謝。
是否有任何最好的方式來打開windows 8 metro應用程序中的word文檔,除了發射器 –