It works for me if I copy
AxInterop.WMPLib.1.0.dll
Interop.WMPLib.1.0.dll
into the .exe folder
Then I can create the WMP control by code :
AxWMPLib::AxWindowsMediaPlayer^ musica = gcnew AxWMPLib::AxWindowsMediaPlayer();
musica->Size = System::Drawing::Size(400, 400);
musica->Location = System::Drawing::Point(300, 10);
this->Controls->Add(musica);
musica->URL = "E:\\01. IMANY - Don't Be so Shy (Filatov & Karas Remix).mp3";
musica->Ctlcontrols->play();