2015-09-02 75 views
1

我試圖從Windows 10上的C#Windows窗體應用程序啓動Windows應用商店應用程序。我嘗試了一些方法什麼(可能?)在Windows 8上工作,但不工作在10. 我試過如下:從桌面運行Windows Store應用程序

Process.Start("explorer", @"shell:AppsFolder\AppUserModelId") 

Process.Start(@"C:\Program Files (x86)\Windows Kits\10\App Certification Kit\Microsoft.Windows.SoftwareLogo.AppxLauncher.exe", "AppUserModelId"); 
or IApplicationActivationManager::ActivateApplication 

這工作,但只能通過命令行(這告訴我,使用AppUserModelId是正確的)。

任何人都知道一個工作解決方案?

回答

相關問題