I need MessageBox.Show (), but with enhanced functionality: the built-in message box for Windows Phone 7 will not display arbitrary buttons, just OK or cancel, I need, for example, YesNo. I need a Show method that will only return when the user clicks a button. I tried to make my own inbox pop up. The problem is that it is asynchronous, like everything in the user interface in WP7, and I cannot block the UI thread, because the user interface is responsible for handling button events. I saw the ChildWindow example for WP7, but it was also asynchronous, I have to have the Show () method, which returns only when the user clicks. Any suggestions? Some DoEvents () can help me a lot, but in WP7 there is no such method: (
Vic
source share