问题描述
我已经设计了一个 WPF 列表框.我在 Windows 8 下开发.将样式设置为如下(见图)后,当我在 Windows 7 中测试应用程序时,边距不一样.正如您在图像中看到的,节点之间的间隔在 Windows 8 中为 1px,但在 Windows 7 中为 0 px.
I have styled an WPF ListBox. I'm developing under Windows 8. After setup the style to be as follows (see image), when I test the application in Windows 7, the margin is not the same. As you can see in the imagen the separation between nodes is 1px in Windows 8, but 0 px in Windows 7.
你知道这是为什么,以及如何解决吗?
Do you know why is this, and how to solve it?
提前致谢.
推荐答案
其实我自己搞定的,貌似是Windows8改的ListViewItem样式,给ListView的本地资源加个样式为我工作.
I actually managed to get rid of it myself, it looks like it's ListViewItem style that's being changed by Windows8, adding a style to the local resources of the ListView has worked for me.
<ListView.Resources>
<Style TargetType="ListViewItem">
<Setter Property="Margin" Value="0"/>
<Setter Property="Padding" Value="0"/>
<Setter Property="BorderThickness" Value="0"/>
</Style>
</ListView.Resources>
这篇关于Windows 7 和 Windows 8 中的 ListBox 边距不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!