Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以从本机端(C++)访问已在 Windows Phone 8 Direct3D Xaml/C++ 应用程序的 XAML/C# 部分中实例化的对象(!)?
我们尝试添加引用,但不幸的是没有运气。
是的,首先您需要在 C++/CX 端定义一个 Windows 运行时接口。
然后,您可以引用此接口并从实现此接口的类中实例化一个 C# 对象。
最后,您可以将此类实例传递给您的 C++ 层(Windows 运行时组件类)。
然后,您可以从 C++ 调用该 WinRT 接口的方法,并且您的代码将在 C#/.NET 中运行。