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..

link|improve this question

2  
C++/CX generates pure native code, unlike C++/CLI. Some interop is possible since C++/CX ref classes are COM under the hood. The registration is going to be tricky though, WinRT uses a very different deployment scenario (everything in a .zip). You are going to have to get it registered somehow. C++/CX surely isn't generating a DllRegisterServer method so that Regsvr32.exe would work. – Hans Passant Sep 19 '11 at 10:55
AH, OK, So C++/CX is like COM, but not exactly. c# apps (outside WinRT) can't easily reference it. – Jeff Sep 19 '11 at 21:17
Theoretically (as it's COM under the hood) they could be access-able in .NET through a COM-Callable-Wrapper… – MFH Sep 19 '11 at 22:19
feedback

2 Answers

up vote 8 down vote accepted

No you cannot use C++/CX outside WinRT - it relies on the windows runtime metadata and there is no metadata for non winrt APIs.

link|improve this answer
1  
Disapointing, but thanks for the answer! – Jeff Sep 19 '11 at 21:13
3  
I think he's rather talking about writing his own WinRT component in C++/CX, and then referencing that component from a .NET WPF app. Unless WinRT projection is only enabled for Metro-style apps, and not available in desktop .NET, it seems to me that this should actually work. – Pavel Minaev Sep 19 '11 at 22:03
1  
Pavel: You're right, that should work. I assumed he was trying to use C++/CX to simplify other COM operations. – Larry Osterman Sep 20 '11 at 2:40
2  
Thanks Pavel - major bummer. C++/CLI is the interop story for the desktop, and C++/CLI is DEAD on metro-style apps, while C++/CX is the interop story for Metro, and is disallowed on the desktop. C'mon MS...give us cross-platform C++/CX goodness! – David Cuccia Sep 22 '11 at 5:22
1  
Sorry, I thought this was about C++/CX from C++/CX. And yeah, the CLR looks at the package identity for non 1st party apps. I DID say that it didn't work. If it did work, it would be a bug that we would have to fix. – Larry Osterman Sep 23 '11 at 5:07
show 7 more comments
feedback

Yes you can. WinRT and Win32 is interoperable, just that any application using anything outside the WinRT world cannot be sold in the appstore.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.