我已经设计了一个
WPF ListBox.我在
Windows 8下开发.安装后的样式如下(见图),当我在Windows 7中测试应用程序时,边距不一样.在imagen中可以看到,节点之间的距离在Windows 8中为1px,Windows 7中为0 px.
你知道为什么是这样,怎么解决呢?
提前致谢.
我实际上设法摆脱它自己,它看起来像是ListViewItem样式正在被Windows8改变,添加到ListView的本地资源的样式已经为我工作了.
原文链接:https://www.f2er.com/windows/363947.html<ListView.Resources> <Style TargetType="ListViewItem"> <Setter Property="Margin" Value="0"/> <Setter Property="Padding" Value="0"/> <Setter Property="BorderThickness" Value="0"/> </Style> </ListView.Resources>