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 边距不同


基础教程推荐
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01