如何在ListBox WPF上的ItemsPanel中删除1px

时间:2017-09-09 12:13:55

标签: wpf listbox padding listboxitem

我在ListBox项目面板中找不到保证金1px。

我的xaml代码。

<ListBox>
    <ListBox.Resource>
        <Style TargetType="ListBoxItem">
            <Setter Property="Padding" Value="0"/>
            <Setter Property="Margin" Value="0"/>
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="ListBoxItem">
                        <Border Padding="{TemplateBinding Padding}"
                                Margin="{TemplateBinding Margin}"
                                Background="{TemplateBinding Background">
                        </Border>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>

        <Style TargetType="ListBox">
            <Setter Property="BorderBrush" Value="Black"/>
            <Setter Property="BorderThickness" Value="1"/>
            <Setter Property="Padding" Value="0"/>
            <Setter Property="Background" Value="Blue"/>
            <Setter Property="ItemsPanel">
                <Setter.Value>
                   <ItemsPanelTemplate>
                       <UniformGrid Columns="2" Background="Red" Margin="0"/>
                   </ItemsPanelTemplate>
                </Setter.Value>
            </Setter>
        </Style>
    </ListBox.Resource>
</ListBox>

和结果图像。 enter image description here

我想删除蓝色背景!! 请帮我!!

0 个答案:

没有答案