1

如何在 UWP 应用中指定 ContentDialog 的高度?

在手机上,它几乎扩展了整个页面,即使对话框内容高度是页面的三分之一。

4

1 回答 1

0

很容易。在 XAML 中执行此操作:

        <ContentDialog x:Name="MyContentDialog" Height="100" Width="150"
                    Title="Lorem Ipsum"
                    PrimaryButtonText="OK" IsPrimaryButtonEnabled="True">
        <StackPanel Width="150" Height="100">
            <TextBlock Text="Lorem ipsum dolor sit amet, consectetur adipiscing elit" TextWrapping="Wrap" />
        </StackPanel>
    </ContentDialog>

或者使用 MaxHeight 属性。
这是很好的链接Windows 10 XAML 提示:MessageDialog 和 ContentDialog

如果您有太多内容 - 您可以尝试将ScrollViewer放在 ContentDialog 内或更新ContentDialog 默认样式

于 2016-04-16T14:45:25.263 回答