Share via

How to correct the compact view that isn't compact and reverse the increased row padding in File Explorer

Michelle Neil 40 Reputation points
2025-12-17T17:11:03.8466667+00:00

Windows 11 removed true compact folder spacing / folder spacing / explorer density in File Explorer. “Compact view” no longer reduces row height, significantly reducing information density. This is a regression from Windows 10 and negatively impacts productivity. Is there a permanent fix available for users with limited control/access to settings?

Windows for business | Windows 365 Business
0 comments No comments

Answer accepted by question author

VPHAN 34,875 Reputation points Independent Advisor
2025-12-17T17:56:46.67+00:00

Hello Michelle Neil,

You are accurately identifying a byproduct of the architectural shift in the Windows 11 shell. Unlike Windows 10, which utilized the legacy DirectUI framework for File Explorer, Windows 11 implements the Windows App SDK (WinUI) with XAML-based command bars and views. This modern framework enforces a larger default "touch-friendly" hit target and padding structure. While the "Compact view" option toggles a state to reduce this padding, the XAML grid definitions for the "Compact" state in Windows 11 still carry higher pixel density values than the native Win32 controls used in Windows 10. Consequently, even with Compact view correctly enabled, the row height will be mathematically taller than what you experienced in the previous OS.

To ensure you are achieving the maximum density possible within these constraints, we must verify the configuration is writing to the registry correctly, as the UI toggle can sometimes fail to persist across sessions or get overridden by tablet posture states. Open the Registry Editor (regedit.exe) and navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced. Locate the DWORD value named UseCompactMode. Ensure this Value data is set to 1. If this key is missing or set to 0, the system is defaulting to the standard "comfortable" padding. Furthermore, you should check HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ImmersiveShell for a value named TabletMode and ensure it is set to 0, as Windows 11 can sometimes erroneously flag a desktop as a tablet device, forcing the expanded UI regardless of your Explorer settings.

If UseCompactMode is already set to 1 and the density remains insufficient for your workflow, there is no native, supported "permanent fix" or hidden registry key to revert the rendering engine to the exact Windows 10 dimensions. The spacing is hardcoded into the Explorer frame's resource definitions (specifically the UI.xaml resources within explorerframe.dll and related package dependencies), which cannot be altered without replacing system files or injecting code, actions that violate your limited access environment and Microsoft's security integrity policies. You are currently viewing the limit of the operating system's native information density.

I hope you've found something useful here. If it helps you get more insight into the issue, it's appreciated to accept the answer. Should you have more questions, feel free to leave a message. Have a nice day!

VP

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

Answer accepted by question author

VPHAN 34,875 Reputation points Independent Advisor
2025-12-18T15:16:33.9066667+00:00

Hello Michelle Neil,

I'm checking in to see if the explanation regarding the architectural shift to XAML-based WinUI in the Windows 11 shell clarified the behavior you are seeing. As mentioned, the increased padding is intrinsic to the new framework's resource definitions and distinct from the legacy DirectUI used in Windows 10, meaning row heights will mathematically remain larger even in "Compact" mode. Verifying that the UseCompactMode DWORD is set to 1 in HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced confirms you have enabled the maximum information density currently supported by the operating system without modifying system files.

If the issue has been successfully resolved, please consider accepting the answer as it helps other people sharing the same question benefit too. Thank you!

VP

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Michelle Neil 40 Reputation points
    2025-12-18T15:58:15.33+00:00

    Thank you for the detailed explanation.

    To confirm my understanding: Windows 11 enforces increased File Explorer row padding by design due to the WinUI/XAML framework, and there is no supported method for users with restricted permissions to restore Windows 10–level information density or permanently lock compact spacing.

    This answers my question. I will accept the response for documentation purposes, though I strongly disagree with the regression in usability.

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.