1

我需要显示未附加到任何页面的 ContentDialog。

目前我在代码中动态构建它。

如何在 XAML 中定义它?

4

1 回答 1

0

通过将UserControl项目添加到您的项目并将其基本类型更改ContentDialog为以下 Body:

<ContentDialog .../>
-or-
<ContentDialog>
    singleObject
</ContentDialog>
-or-
<ContentDialog>stringContent</ContentDialog>

请参阅MSDN 链接

于 2016-01-15T13:30:08.037 回答