我有一个场景,我在视图模型中更改内容对话框的大小。这在 AnniversaryUpdate 中运行良好,但在 Creators Update 中,我得到了完全不同(且不可行)的行为。
我有一个内容对话框,我想根据用户输入将屏幕尺寸从纵向更改为横向。在构建 14393(周年纪念)中,它工作得很好。当我将项目切换为使用 Creators Update (150630) 时,它根本不起作用。
这是导致该问题的 XAML 代码:
<ContentDialog
x:Class="DialogView"
...snip...
Background="LightGray"
MinHeight="{Binding GridHeight}" MinWidth="{Binding GridWidth}">
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Grid Background="AliceBlue" Visibility="Collapsed"/>
<Button Content="{Binding Orientation}" Height="40" Click="ToggleButton_Click" VerticalAlignment="Top" HorizontalAlignment="Left"/>
</Grid>
当我为 Creators Update 运行构建时,我得到一个不会改变大小的非常小的对话框。