VeriticleAlignment Center在网格中的Windows Phone 8中不起作用

时间:2014-01-10 10:10:22

标签: windows-phone-8

VeriticleAlignment Center在网格中的Windows Phone 8中不起作用。任何人都可以帮我怎么做?

1 个答案:

答案 0 :(得分:1)

您需要在网格内的子项上设置它,例如

<Grid x:Name="LayoutRoot" Background="Transparent">
    <Canvas Height="300" Width="300" HorizontalAlignment="Center" VerticalAlignment="Center">
        ...
    </Canvas>
</Grid>

注意:Canvas仅用作示例,可以是任何控件。