【发布时间】:2013-08-13 09:30:00
【问题描述】:
我正在使用 VS 2013 在 Windows 8.1 Preview 版本中开发应用程序。当我在 Windows 8 PC 中部署应用程序包时,它没有运行。我有一个小问题,Windows 8.1 开发的应用程序是否会在 Windows 8 PC 上运行。如果它需要运行,是否应该为应用程序或 PC 提供任何其他规范?
【问题讨论】:
标签: c# xaml windows-8 windows-8.1
我正在使用 VS 2013 在 Windows 8.1 Preview 版本中开发应用程序。当我在 Windows 8 PC 中部署应用程序包时,它没有运行。我有一个小问题,Windows 8.1 开发的应用程序是否会在 Windows 8 PC 上运行。如果它需要运行,是否应该为应用程序或 PC 提供任何其他规范?
【问题讨论】:
标签: c# xaml windows-8 windows-8.1
如果你的目标是 8.1 那么应用程序将无法在 windows 8 中运行。那是因为 8.1 的 api 被扩展,并且新功能在 windows 8 中不存在。如果你在 windows 8.1 中开发并以 windows 8 为目标。那么这些应用开箱即用。
例如,Windows 8.1 支持新控件。如果您以 8.1 为目标,则可以使用这些控件,但是当您使用 Windows 8 时,这些控件不存在,因此应用程序无法运行。
【讨论】: