Reputation: 629
It is probably a stupid question but I was wondering if there was any way to 'convert' a Universal Windows Application to a Win32 Application. I know that's a way to do the opposite so I was curious about it.
Upvotes: 2
Views: 129
Reputation: 12019
Using the Desktop Bridge you can add Full Trust components to your existing UWP project. The issue is that these are separate processes so if you want to add new "desktop" features you need to coordinate across two processes (or else rewrite your UI in one if the older UI frameworks).
Upvotes: 1