我需要显示未附加到任何页面的 ContentDialog。
目前我在代码中动态构建它。
如何在 XAML 中定义它?
我需要显示未附加到任何页面的 ContentDialog。
目前我在代码中动态构建它。
如何在 XAML 中定义它?
通过将UserControl
项目添加到您的项目并将其基本类型更改ContentDialog
为以下 Body:
<ContentDialog .../>
-or-
<ContentDialog>
singleObject
</ContentDialog>
-or-
<ContentDialog>stringContent</ContentDialog>
请参阅MSDN 链接