如何删除Grid和Button之间的空间

时间:2014-02-20 16:02:54

标签: xaml windows-phone-8

enter image description here

我正在使用Grid和Button来制作按钮列表。 这是我的代码

<Grid Grid.Row="1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
    <Grid.RowDefinitions>
        <RowDefinition Height="Auto" />
        <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <Button HorizontalAlignment="Stretch" VerticalAlignment="Stretch" 
      BorderThickness="0" Background="Red" Content="dsa" Margin="0" Padding="0"/>
</Grid>

如何使用Button删除Grid之间的空间?

我尝试使用padding&amp;保证金为0,但不受影响。

2 个答案:

答案 0 :(得分:3)

尝试更改按钮的边距,例如Margin='-10'。这将消除空间。

答案 1 :(得分:0)

您是否尝试过添加样式标记,并使用border-collapse:collapse;和/或列间隙:0px; ? (将这些添加到网格,而不是按钮)