Blog
Display MessageBox in WP7(XNA)
You may need to show MessageBox in a WP7-XNA project,here is how its done!
Assuming you need to show a MessageBox in an XNA application on WP7,the easiest way is to add System.Windows namespace.
Then you need to call "Classic" Show function of MessageBox
MessageBox.Show("Hello There!");
|
Here have a look at what we've achieved:
Hope it helps!