Reputation: 1107
I would like to start async operation in c# metro application and I would like to show modal dialogue with ProgressRing.
Is there any easy way howto do it? Or any best practises howto do this?
Upvotes: 2
Views: 2412
Reputation: 5225
The modal dialog box class in WinRT is MessageDialog. Here are the best practices for using dialogs.
There is a code sample for message dialogs at http://code.msdn.microsoft.com/windowsapps/Message-dialog-sample-00c928f5.
Upvotes: 1