Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 C# 中,如何为 App Store 应用程序显示无模式对话框?
我的应用程序有多个视图和长时间的任务。我想在屏幕右上角的无模式框中显示任务进度。
它是一个信息框,不与用户交互,也不会对用户产生影响。用户必须能够浏览视图、输入数据等。
弹出控件解决了它:
var p = new Popup(); p.Child = new MyUserControl(); p.IsOpen = true;