ListBox margin is not the same in Windows 7 and Windows 8(Windows 7 和 Windows 8 中的 ListBox 边距不同)
问题描述
我已经设计了一个 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 边距不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Windows 7 和 Windows 8 中的 ListBox 边距不同


- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01