Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/visual-studio-2012/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# Windows.System.Launcher在哪个软件包中?_C#_Visual Studio 2012 - Fatal编程技术网

C# Windows.System.Launcher在哪个软件包中?

C# Windows.System.Launcher在哪个软件包中?,c#,visual-studio-2012,C#,Visual Studio 2012,我希望在Windows窗体应用程序中使用Windows.System.Launcher。我正在Windows 7计算机上使用Visual Studio Express 2012,应用程序为.Net 4.5 我似乎找不到要添加的参考。(什么软件包)?Windows.System.Launcher仅在Windows 8上可用的Windows应用商店应用程序API 您应该调用仅在Windows 8上可用的Process.Start(url)Windows.System.LauncherWindows应

我希望在Windows窗体应用程序中使用Windows.System.Launcher。我正在Windows 7计算机上使用Visual Studio Express 2012,应用程序为.Net 4.5


我似乎找不到要添加的参考。(什么软件包)?

Windows.System.Launcher仅在Windows 8上可用的Windows应用商店应用程序API


您应该调用仅在Windows 8上可用的
Process.Start(url)
Windows.System.Launcher
Windows应用商店应用程序API


您应该调用
Process.Start(url)

Windows.System.Launcher是Windows应用商店应用程序特有的功能,如图所示:

支持的最低客户端Windows 8[仅限Windows应用商店应用]

支持的最低服务器Windows server 2012[仅限Windows应用商店应用]


Windows.System.Launcher是Windows应用商店应用程序特有的功能,如图所示:

支持的最低客户端Windows 8[仅限Windows应用商店应用]

支持的最低服务器Windows server 2012[仅限Windows应用商店应用]


谢谢,我正在Windows7机器上为Windows8.1开发一个应用程序。我将在我的Windows 8.1计算机上安装Visual Studio Express 2012 for Windows 8并在那里进行开发。你知道我需要在Windows 8.1计算机上提供什么参考吗?你无法在Windows 7上开发Windows应用商店应用。如果您在Windows 8+计算机上创建Windows应用商店应用程序,该引用将自动出现。(所有WinRT API都来自一个名为
Windows
)的假程序集。您在找什么?谢谢,我正在Windows 7机器上为Windows 8.1开发一个应用程序。我将在我的Windows 8.1计算机上安装Visual Studio Express 2012 for Windows 8并在那里进行开发。你知道我需要在Windows 8.1计算机上提供什么参考吗?你无法在Windows 7上开发Windows应用商店应用。如果您在Windows 8+计算机上创建Windows应用商店应用程序,该引用将自动出现。(所有WinRT API都来自一个名为
Windows
的假程序集)您在寻找什么?