C++/CX 可以简化我的(非 WinRT)WPF 应用程序吗?
C++/CX 似乎使本机 C++ 与 C# 的接口比当前在中间使用 C++/CLI“层”的方法(以及随之而来的所有复杂性)更容易、更直接。 但是我可以在老式 WPF 桌面式应用程序中使用 WinRT 之外的 C++/CX 吗? 澄清:我的 WPF 应用程序“包装”了较旧的 Windows32 应用程序代码。因此,我正在与本机 c++ 进行交互,但将本机 c++、托管 C++ 和 c# 全部放在同一个应用程序中会很尴尬。
C++/CX seems to make interfacing native C++ with C# FAR easier and more direct than the current method using a C++/CLI 'layer' in-between (with all the complications that entails).
But can I use C++/CX OUTSIDE WinRT in a old-school WPF Desktop-style Application?
Clarification: My WPF App 'wraps' an older Windows32 Application code. So I'm interopting with native c++, but it's awkward having native c++, Managed C++ and c# all in the same application..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,您不能在 WinRT 之外使用 C++/CX - 它依赖于 Windows 运行时元数据,并且没有非 winrt API 的元数据。
No you cannot use C++/CX outside WinRT - it relies on the windows runtime metadata and there is no metadata for non winrt APIs.
是的,你可以。 WinRT 和 Win32 是可互操作的,只是任何使用 WinRT 世界之外的任何应用程序都不能在应用商店中出售。
Yes you can. WinRT and Win32 is interoperable, just that any application using anything outside the WinRT world cannot be sold in the appstore.