Skip to content

Releases: tzdwindows/FileBrowsWindowPatch

FileBrowsWindowPatch-v1.4

13 Sep 09:22

Choose a tag to compare

更新日志 - v1.4

[v1.4] - 2025-9-13

本次更新主要优化了模糊的方法模仿了ExplorerBlurMica的一个默认的模糊风格

已修复

  • 渲染问题:当托拽文件资源管理器时出现的延迟问题和可能会出现的渲染失败的问题
  • 模糊问题:修复了一些模糊的颜色算法

增加/修改

  • 当使用 --efftype=1 时不再使用的是原有的模糊效果而是最新的来自于ExplorerBlurMica的一个默认的模糊效果
  • 要想使用上版本默认风格的模糊请使用 --efftype=2 即可
  • 在windows 7/8/10 分别处理了对应的效果
  • 暂时移除图片渲染内容,因为之前的逻辑渲染的图片有一点不尽人意

未来

  • 将修复图片展示功能

介绍

  • 其实他还有一个其他的模式 --efftype=3 这个模式下背景将不模糊将会变得透明(非常透明)(示例:FileBrowsWindow.exe --efftype=3 --blendcolor=255,255,255,0)awa

Changelog - v1.4

[v1.4] - 2025-9-13

This update the fuzzy optimization method is mainly simulates the [ExplorerBlurMica] (https://github.com/Maplespe/ExplorerBlurMica), a fuzzy default style

Fixed

  • ** Rendering issues ** : Latency issues and possible render failures when dragging File Explorer
  • ** Blurring issues ** : Fixed some ambiguous color algorithms

Add/modify

  • Use --efftype=2 to use the default fuzzing style of the previous version
  • The effect is handled in windows 7/8/10
  • Temporarily remove the image rendering content, as the previous logic rendered the image a bit unsatisfactory

The future

  • Image display will be fixed

Introduction

  • Actually it has another mode --efftype=3 In this mode the background will not be blurred and will become transparent (very transparent) (example: FileBrowsWindow.exe --efftype=3 --blendcolor=255,255,255,0)

FileBrowseWindowPatch-v1.3

06 Sep 11:13

Choose a tag to compare

更新日志 - v1.3

[v1.3] - 2025-9-6

本次更新主要修复了界面显示问题并增强了程序的稳定性。

已修复

  • 界面问题:修复了文件资源管理器窗口在夜晚(深色)模式下部分UI元素周围出现异常黑色边框的问题。

优化与改进

  • 稳定性提升:新增全局异常处理程序,能够更优雅地捕获和处理未预期的错误。
  • 用户体验:优化了异常发生时的弹窗提示,提供了更清晰、友好的错误信息,并给出了后续操作建议。

FileBrowseWindowPatch-v1.2

29 Aug 10:24

Choose a tag to compare

FileBrowseWindowPatch v1.2 使用说明

概述

FileBrowseWindowPatch 是一个用于增强 Windows 文件浏览窗口视觉效果的工具,支持亚克力、Mica、模糊等多种特效,以及自定义背景图片和颜色。

基础用法

FileBrowseWindow.exe [--参数=值] [--参数=值]

参数说明

--efftype

设置视觉效果模式

可选值:

  • 0: 禁用特效
  • 1: 亚克力效果 (推荐 Win11)
  • 2: Mica效果
  • 3: 模糊效果

示例:

--efftype=1

--blendcolor

设置背景色,支持十六进制和十进制格式

格式:

  • 十六进制:0xAARRGGBB
  • 十进制:十进制颜色值

示例:

--blendcolor=0x80FF0000  # 半透明红色
--blendcolor=16711680    # 纯红色

--automatic_acquisition_color

是否自动获取系统主题色

可选值:

  • true: 启用自动获取
  • false: 禁用自动获取

示例:

--automatic_acquisition_color=true

--automatic_acquisition_color_transparency

自动获取颜色时的透明度设置

取值范围: 0-100

示例:

--automatic_acquisition_color_transparency=50

--enabled

启用/禁用所有效果

可选值:

  • true: 启用所有效果
  • false: 禁用所有效果

示例:

--enabled=true

使用示例

示例 1:启用亚克力效果

FileBrowseWindow.exe --efftype=1 --blendcolor=0x80FF0000 --enabled=true

示例 2:自动获取系统主题色

FileBrowseWindow.exe --efftype=1 --automatic_acquisition_color=true --automatic_acquisition_color_transparency=50 --enabled=true

更新说明

v1.2 修复和改进

  1. 修改文件名大小写重写 HookManager::SetWindowBlur

    • 修改实现,支持更多模式并修正透明度设置问题
  2. 重写 HookManager::OnWindowSize 函数

    • 移除 DwmFlush() 阻塞
    • 修复关于 DwmExtendFrameIntoClientArea 的设置逻辑问题
  3. 总体更新

    • 使设置更加多样化
    • 提升稳定性和兼容性

技术支持

如遇到问题,请检查参数格式是否正确,并确保系统兼容性。

FileBrowseWindowPatch-v1.1

21 Aug 03:44

Choose a tag to compare

本次更新内容:
refactor(FileBrowsWindowPatch): 优化 VisualTreeWatcher 背景修改逻辑

  • 移除了复杂的 ControlTemplate 和 Resources 遍历逻辑
  • 新增了设置 Path.RasterizationScale 属性的代码
  • 简化了背景颜色设置过程,仅保留基本的属性设置逻辑
  • 增强对 Microsoft.UI.Xaml.Shapes.Path 元素的隐藏处理
  • 增加对 Microsoft.UI.Xaml.Controls.Border 类型元素的隐藏处理

This update includes:
refactor(FileBrowsWindowPatch): Optimize the background modification logic of VisualTreeWatcher

  • Removed complex ControlTemplate and Resources traversal logic
  • Added code to set the Path.RasterizationScale property
  • Simplifies the background color setting process, keeping only the basic property setting logic
  • enhance the * Microsoft. UI. Xaml. Shapes. Path * elements hidden processing
  • adds to * Microsoft in the UI. The Xaml. Controls. The Border * type elements hidden processing

FileBrowseWindowPatch-v1.0

20 Aug 08:17

Choose a tag to compare

一个基础版本,windows 7 可以使用:通过网盘分享的文件:FileBrowsWindow0.2.zip
链接: https://pan.baidu.com/s/1QTXSf17XJRJtIMGPZfBGzw?pwd=1145 提取码: 1145 这个版本