Using COM Objects in MetroStyle Applications

Can I use COM objects in MetroStyle applications? I wanted to develop a simple application that uses the MediaMonkey API through COM.

+5
source share
1 answer

In general, it is not possible to use existing COM objects from a metro style application. There are some exceptions, but almost all existing COM objects will be locked at runtime.

It’s best to see if MediaMonkey users can repackage their API as a winrt component and then add this component to your package.

+4
source

All Articles