简体   繁体   English

App Store中的无模式对话框

[英]Modeless dialog box in App store

In C#, how can I show modeless dialog box for a App store application? 在C#中,如何显示App Store应用程序的无模式对话框?

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;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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