Dave Citron
Dave Citron

Reputation: 13

Is there a way to read current system volume setting on Windows Phone?

I know you can't change it, but I'd like to instrument the system volume setting inside my app.

Thanks!

Upvotes: 1

Views: 1363

Answers (2)

ColinE
ColinE

Reputation: 70160

Currently there is no API for getting or setting the system volume. You can set the volume of your own MediaElements, however, this is combined with the system volume to determine the overall playback volume.

See also:

Windows Phone 7 Volume Settings programmatically

Upvotes: 3

Senick
Senick

Reputation: 101

Did you try the MediaElement.Volume property?

http://msdn.microsoft.com/en-us/library/system.windows.controls.mediaelement.volume(v=vs.95).aspx

I don't know the exact way to use it, but it seem like there is a possibility with this class.

Sorry if it doesn't help you.

Upvotes: 0

Related Questions