Dabiel Kabuto
Dabiel Kabuto

Reputation: 2862

Modeless dialog box in App store

In C#, how can I show modeless dialog box for a App store application?

My app has multiple views and a long time task. I would like to show the task progress in a modeless box at the top-right corner of the screen.

It is a information box, no interaction with the user and it should not affect to the user. The user must be able to navigate across the views, enter data, etc.

Upvotes: 1

Views: 132

Answers (1)

Dabiel Kabuto
Dabiel Kabuto

Reputation: 2862

Popup control solves it:

var p = new Popup();
p.Child = new MyUserControl();
p.IsOpen = true;

Upvotes: 1

Related Questions