在我的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>
我甚至尝试添加最小宽度但没有用..复选框及其内容之间仍然没有填充。
答案 0 :(得分: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>