2017-08-24 90 views
0

在我的Winphone 8.1中,複選框和它的內容之間沒有填充,它們在visual studio xaml viewer中非常接近,我可以看到它們之間有空間。如何在複選框和其內容之間添加填充

    <StackPanel Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" Orientation="Horizontal" VerticalAlignment="Stretch" Background="White"> 
        <CheckBox Name="Chk1" Height="55" Content="blah blah1" Margin="5,0,0,0"></CheckBox> 
        <CheckBox Name="Chk2" Height="55" MinWidth="100" Content="Blah blah2"></CheckBox> 
       </StackPanel> 

我甚至嘗試添加最小寬度,但它沒有用處..仍然沒有填充複選框和其內容之間。

回答

1

使用填充左,那麼它應該是罰款

<CheckBox Name="Chk1" Height="55" Padding="5,0,5,0" Content="blah blah1" Margin="5,0,0,0"></CheckBox> 
<CheckBox Name="Chk2" Height="55" Padding="5,0,5,0" MinWidth="100" Content="Blah blah2"></CheckBox>