如何在 WP7.1 中重新实现模态消息框以显示自定义设计?
我在 SO 和 Internet 上都看到了许多带有答案的问题。
但是,到目前为止我看到的所有解决方案都是非阻塞的。在我的应用程序中,我有时会使用消息框来确认某些内容,因此我需要像系统提供的 MessageBox 类一样阻塞 UI 线程的解决方案,即
if( CustomMessageBox.confirm( "orly?" ) ) { ...
更新:从模拟器图像中反编译 System.Windows.dll 显示 MessageBox 类只是 agcore.dll 中 MessageBox_ShowCore 的一个薄包装器,它显然从 coredll.dll 调用 MessageBoxW ..