如何在复选框及其内容之间添加填充



在我的Winphone 8.1中,复选框及其内容之间没有填充,它们非常接近,而在Visual Studio xaml查看器中,我可以看到它们之间有一个空格。

<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>

我什至尝试添加最小宽度,但它没有用......复选框及其内容之间仍然没有填充。

使用左边填充,那么应该没问题

<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>

相关内容

  • 没有找到相关文章

最新更新