1

我正在尝试将一些方法从 WPF 调整到 Windows 8。

Windows 8 中缺少很多类,而且大多数时候,当我在互联网上查看它们以获取等价物时,据说它适用于 Windows 8。

只有两个例子,但我已经看过数百个:

http://msdn.microsoft.com/en-us/library/system.threading.threadabortexception.aspx

http://msdn.microsoft.com/en-us/library/system.security.cryptography.aesmanaged.aspx

页面底部显示“在 Windows 8 中受支持”。支持的 .Net 框架是 4.5,我认为这是我在 Windows 8 RTM 上使用的框架。

那我做错什么了吗?我忘了包括一些参考资料吗?还是文档不正确?

谢谢

4

1 回答 1

4

Windows 8 有两个独立的平台:WinRT 和 Win32。WinRT 是平板电脑界面,而 Win32 是传统桌面。有关图表和说明,请参见此处。WPF 仅适用于 win32。

如果您想要 WinRT 应用程序(或众所周知的 Windows Store Apps 或 Windows 8 UI Applications)的文档,您需要查看Windows Store Apps而不是.NET Development

于 2012-09-10T16:20:29.230 回答