Myth Rush
Myth Rush

Reputation: 1107

windows 8 modal progress dialogue (like messagebox with own content and buttons...)

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

Answers (1)

Jennifer Marsman - MSFT
Jennifer Marsman - MSFT

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

Related Questions