我已经设计了一个 WPF 列表框。我在Windows 8下开发。设置样式如下(见图)后,当我在Windows 7中测试应用程序时,边距不一样。正如您在图像中看到的,节点之间的间隔在 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>
默认的 ListBoxItem 包含一个边框。ListBoxItem 还指定了一个由此边框继承的填充。它的 Padding DP 需要像 Andy 提到的那样设置。