通用 Windows 平台 - 向后兼容和 Windows 10 个版本
Universal Windows Platform - Backward compatibility and Windows 10 versions
我已经开始探索通用Windows平台,并在Windows 10 SDK download page:
看到了
The Windows 10 SDK allows you to build Universal Windows apps as well as desktop apps for Windows 10, version 1607.
如果我使用此 SDK 构建应用程序,它可以在 Windows 10 的未来版本上运行吗?
这是来自列出所有 Windows 10 version 1607 API changes:
的页面
Many runtime APIs have been added or changed in Windows 10 version 1607. This table lists the namespaces that have been added or changed in this release. [...]
浏览 classes 时,您可以看到有关此的通知。例如,class Windows.Media.Playback.MediaPlayer
的几个成员有这个通知:
MediaPlayer.[MemberName] may be altered or unavailable after Windows 10, version 1607. Instead, use [...]
所以我不明白。没有更多的向后兼容性?如果我为版本 1607 构建应用程序,它可能会在用户将 Windows 10 更新到下一个版本后中断吗?或者它会工作,但我的代码变成 "obsolete"?
将其视为为 Android 制作应用程序:只要 Google 不破坏界面,您的应用程序就可以运行。通常当他们改变某些东西时,他们会给你时间(通过 "MediaPlayer.[MemberName] may be altered or unavailable after Windows 10, version 1607. Instead, use [...]" 的消息)来更新你的应用程序。
Windows10 的 UWP 应用在那个场景中没有什么不同。
If I build an app with this SDK, will it work on future versions of Windows 10?
是的。如果它不起作用,那么他们会明确告诉你它在版本 xxxx 中不起作用。现在他们正在使用 May be
.
这个词
我已经开始探索通用Windows平台,并在Windows 10 SDK download page:
看到了The Windows 10 SDK allows you to build Universal Windows apps as well as desktop apps for Windows 10, version 1607.
如果我使用此 SDK 构建应用程序,它可以在 Windows 10 的未来版本上运行吗?
这是来自列出所有 Windows 10 version 1607 API changes:
的页面Many runtime APIs have been added or changed in Windows 10 version 1607. This table lists the namespaces that have been added or changed in this release. [...]
浏览 classes 时,您可以看到有关此的通知。例如,class Windows.Media.Playback.MediaPlayer
的几个成员有这个通知:
MediaPlayer.[MemberName] may be altered or unavailable after Windows 10, version 1607. Instead, use [...]
所以我不明白。没有更多的向后兼容性?如果我为版本 1607 构建应用程序,它可能会在用户将 Windows 10 更新到下一个版本后中断吗?或者它会工作,但我的代码变成 "obsolete"?
将其视为为 Android 制作应用程序:只要 Google 不破坏界面,您的应用程序就可以运行。通常当他们改变某些东西时,他们会给你时间(通过 "MediaPlayer.[MemberName] may be altered or unavailable after Windows 10, version 1607. Instead, use [...]" 的消息)来更新你的应用程序。
Windows10 的 UWP 应用在那个场景中没有什么不同。
If I build an app with this SDK, will it work on future versions of Windows 10?
是的。如果它不起作用,那么他们会明确告诉你它在版本 xxxx 中不起作用。现在他们正在使用 May be
.