在 Windows 8.1 上运行 Windows 10 通用应用

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/30317848/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-08 19:04:30  来源:igfitidea点击:

Run Windows 10 Universal Apps on Windows 8.1

windowswindows-8.1win-universal-appwindows-10

提问by MPhil

Is it possible to run a windows 10 universal app on windows 8.1? I searched a lot, but I didn't find a clear answer on MSDN etc.

是否可以在 Windows 8.1 上运行 Windows 10 通用应用程序?我搜索了很多,但我没有在 MSDN 等上找到明确的答案。

Thanks.

谢谢。

回答by Raman Sharma

The answer would be no. For further clarifications, best to post on the forum: https://social.msdn.microsoft.com/Forums/windowsapps/en-US/home?forum=wpdevelop

答案是否定的。如需进一步说明,最好在论坛上发帖:https: //social.msdn.microsoft.com/Forums/windowsapps/en-US/home?forum =wpdevelop

Windows 10 introduces several new APIs and concepts (such as API contracts) that are not available on Windows 8.1. An app that relies on such new APIs and concepts cannot run on Windows 8.1. Additionally the app-model and a lot of packaging machinery for Windows 10 Universal apps is very different from Windows 8.1. Apps built with such new information cannot be successfully understood by Windows 8.1 for deployment. Also, Store will not make the Windows 10 apps available for download on Windows 8.1

Windows 10 引入了几个在 Windows 8.1 上不可用的新 API 和概念(例如 API 合同)。依赖于此类新 API 和概念的应用无法在 Windows 8.1 上运行。此外,Windows 10 通用应用程序的应用程序模型和许多打包机制与 Windows 8.1 大不相同。Windows 8.1 无法成功理解使用此类新信息构建的应用程序进行部署。此外,Store 不会在 Windows 8.1 上提供可供下载的 Windows 10 应用程序

回答by Tharif

A Universal Windows app is a Windows experience that is built upon the Universal Windows Platform (UWP), which was first introduced in Windows 8 as the Windows Runtime. Universal Windows apps are most often distributed via the Windows Store (but can also be side-loaded), and are most often packaged and distributed using the .APPX packaging format.

通用 Windows 应用是一种基于通用 Windows 平台 (UWP) 的 Windows 体验,该平台最初作为 Windows 运行时在 Windows 8 中引入。通用 Windows 应用程序最常通过 Windows 应用商店分发(但也可以旁加载),并且最常使用 .APPX 打包格式进行打包和分发。

"The best way to be ready for Windows 10 is to build your Universal Windows app for Windows 8.1 and Windows Phone 8.1 now."- Microsoft

“为 Windows 10 做好准备的最佳方式是立即构建适用于 Windows 8.1 和 Windows Phone 8.1 的通用 Windows 应用程序。”- Microsoft

How to Build a Windows 8.1 universal app reference

如何构建 Windows 8.1 通用应用程序参考