如何从Windows商店应用程序启动桌面应用程序?

时间:2015-07-10 10:59:48

标签: c# windows windows-store-apps microsoft-metro windows-8.1

请告诉我如何使用c#从Windows商店应用程序启动桌面应用程序或.exe文件。

任何帮助都会非常感激。提前致谢!

1 个答案:

答案 0 :(得分:2)

如评论中所述,由于沙盒环境,您无法直接从Windows应用商店应用启动可执行文件。但是,您可以使用launcher API启动与文件关联的可执行文件。因此,您可以在自定义文件扩展名和要启动的应用程序之间创建文件关联。然后,只需使用启动器API打开具有自定义文件扩展名的文件。

public async void DefaultLaunch()
{
   // Path to the file in the app package to launch
   string imageFile = @"images\test.png";

   var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(imageFile);

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

      if (success)
      {
         // File launched
      }
      else
      {
         // File launch failed
      }
   }
   else
   {
      // Could not find file
   }
}