.net – ListBox边距在Windows 7和Windows 8中是不一样的

前端之家收集整理的这篇文章主要介绍了.net – ListBox边距在Windows 7和Windows 8中是不一样的前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经设计了一个 WPF ListBox.我在 Windows 8下开发.安装后的样式如下(见图),当我在Windows 7中测试应用程序时,边距不一样.在imagen中可以看到,节点之间的距离在Windows 8中为1px,Windows 7中为0 px.

你知道为什么是这样,怎么解决呢?

提前致谢.

我实际上设法摆脱它自己,它看起来像是ListViewItem样式正在被Windows8改变,添加到ListView的本地资源的样式已经为我工作了.
<ListView.Resources>
        <Style TargetType="ListViewItem">
            <Setter Property="Margin" Value="0"/>
            <Setter Property="Padding" Value="0"/>
            <Setter Property="BorderThickness" Value="0"/>
        </Style>
    </ListView.Resources>
原文链接:https://www.f2er.com/windows/363947.html

猜你在找的Windows相关文章