简体   繁体   中英

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.

Popup control solves it:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM