2013-01-17 120 views
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應用程序。

在此先感謝。

回答

2

您應該能夠使用file activation從Windows 8 Metro/Windows Store應用程序打開Word文件。由於.docx或.doc文件已經與Word程序關聯,因此應該將Word作爲單獨的進程啓動,並在您的應用程序中打開Word中的文件。

但是,它不會在您的應用程序中運行Word。這是不可能的。

+0

是否有任何最好的方式來打開windows 8 metro應用程序中的word文檔,除了發射器 –

相關問題