我正在尝试从Windows 10上的C#Windows窗体应用程序启动Windows应用商店应用程序。我尝试了一些方法(可能是?)适用于Windows 8但不适用于10。 我尝试如下:
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是正确的)。
任何人都知道有效的解决方案吗?
答案 0 :(得分:0)
我发现这篇文章创建了商店应用的桌面快捷方式:http://winaero.com/blog/exclusive-how-to-start-a-modern-app-from-desktop-without-going-to-the-metro-start-screen/
很抱歉,除此之外我无能为力。