如何在 Windows 10 中删除详细信息视图中的填充

问题描述 投票:0回答:1

如何删除 Windows 10 中的填充?在 Windows 7 上,您可以通过编辑 ExplorerFrame.dll 来完成此操作,但 Windows 10 中的那个是二进制文件,没有可编辑的 XML。

这就是我要说的: http://www.sevenforums.com/customization/45276-possible-change-list-item-height-spacing.html

我到处寻找答案,如果我以某种方式错过了它,我会感到谦卑。

windows-10 windows-xp explorer detailsview user-customization
1个回答
0
投票

终于调试了这个来回答我自己的问题。

它位于 C:\Windows\SystemResources\ExplorerFrame.dll.mun

用Resource Hacker打开它,它有一个UIFile,其中有一个名为40960的资源。它是二进制的,但XML数据是unicode明文。控制填充的罪魁祸首是位于文件末尾附近的 22rp 的最后一个实例。

rect(0rp, 0rp, 0rp, 0rp) 22rp middleleft|endellipsis|editcontrol themeable(dtb(ItemsView, 6, 1)

将其更改为 01 会删除填充并提供漂亮的紧凑视图,但我相信您只需将其更改为大约 17 即可获得相同的结果。

© www.soinside.com 2019 - 2024. All rights reserved.