0

在我的 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>

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

4

1 回答 1

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>
于 2017-08-24T13:19:23.517 回答