Is there a way to turn off the sound that the Messagebox plays when it is displayed in WP7?

link|improve this question

53% accept rate
feedback

2 Answers

up vote 3 down vote accepted

There's no way to change this behaviour with the Silverlight MessageBox class. If, however, you use Guide.BeginShowMessageBox (from the XNA libraries) you can control whether sounds are played or not.

link|improve this answer
feedback

No, currently there is no way you can disable the sound that is triggered by the MessageBox class. That is a feature tied to the system and unless the device is on mute, the sound will be played.

With XNA's async version you can do this, though (as mentioned by Matt):

Guide.BeginShowMessageBox("Title", "Text", new List<string>() { "OK" }, 0, MessageBoxIcon.None, new AsyncCallback(YourCallback), null);

Here, MessageBoxIcon defines the sound and not the icon (which is nonexistent on Windows Phone for a MessageBox).

Note: you need yo add a reference to Microsoft.Xna.Framework.GamerServices.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.