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!