1

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

Thanks!

2 Answers2

3

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

Community
  • 1
  • 1
ColinE
  • 68,894
  • 15
  • 164
  • 232
0

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.

Senick
  • 101
  • 15
  • No, this only set the volume of mediaElement ... it ranges between 0.0f and 1.0 (it represents a scale of the master volume).. 0.0f is silence and 1.0 = full current master volume – Developer Sep 11 '12 at 07:34