when using Microsoft.Devices.Radio class in my windows phone application will the radio play in background?

167 views Asked by At

i am using the radio class in my application

FMRadio myRadio = FMRadio.Instance;

            // Turn the radio on.
            myRadio.PowerMode = RadioPowerMode.On;
            myRadio.CurrentRegion = RadioRegion.Europe;

            // Set the frequency.
            myRadio.Frequency = 92.7;

will the application exit and the radio of my phone will appear or will it play in background??

1

There are 1 answers

0
Martin Suchan On

Yes, it will play on the background when you exit your app.