Do Windows 8 Store apps have something like a MessageBox?
I need something like a popup window to show the user e.g. when a input is wrong or a error happened. Is there something already in the API or do I have to make my own?
Modern UI guidelines sugest inline error messages for input. However, if you still want a MessageBox, you can have it in the MessageDialog.
MessageDialog dlg = new MessageDialog("Message"); await dlg.ShowAsync();
You're looking for the MessageDialog class
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With