Results 9 comments of kirakira

Have you tried the translation file in branch [5.5.3+](https://github.com/kira-96/Inno-Setup-Chinese-Simplified-Translation/blob/5.5.3%2B/ChineseSimplified.isl)? It is for inno setup 5. If it still doesn't work properly, I suggest you update to inno setup 6.

Inno Setup 翻译文件下载地址:https://jrsoftware.org/files/istrans/由于项目是托管在github上的,国内用户可能无法下载,如需简体中文翻译可通过以下地址下载。Inno Setup 简体中文翻译下载地址:https://github.com/kira-96/Inno-Setup-Chinese-Simplified-Translation/releases/latestInno Setup 5.x 的简体中文翻译下载地址:https://github.com/kira-96/Inno-Setup-Chinese-Simplified-Translation/tree/5.5.3+祝您生活美好,工作愉快![此条邮件自动回复,如有误发请忽略,很抱歉给您带来不便。]

建议将标题栏按钮的悬浮色设置成有透明度的颜色,这样可以自适应标题栏的颜色,看起来会好很多。 下面是我在windows上调整后的颜色,跟系统样式基本一致。 ``` cpp if (isDark) { m_titleBar->chromePalette()->setChromeButtonHoverColor(QColor(0xFF, 0xFF, 0xFF, 12)); m_titleBar->chromePalette()->setChromeButtonPressColor(QColor(0xFF, 0xFF, 0xFF, 6)); } else { m_titleBar->chromePalette()->setChromeButtonHoverColor(QColor(0, 0, 0, 12)); m_titleBar->chromePalette()->setChromeButtonPressColor(QColor(0, 0, 0, 6)); } ``` 还有一个问题就是在亮色主题下,鼠标悬浮在“关闭”按钮上时显示的是黑色叉叉,但系统窗口却始终显示红底白色叉叉。这个暂时没想好怎么改,可能需要对源码动手。

已经做了修改,不知道是否合适? https://github.com/kira-96/framelesshelper/commit/7713230e6b5457db64fe3a671f492b5bffe2d20f ![image](https://github.com/wangwenx190/framelesshelper/assets/22876709/15fa0243-012a-441d-ba4d-ea7fe9b528c2) ![image](https://github.com/wangwenx190/framelesshelper/assets/22876709/d7bb8774-e726-4039-a67a-dfe050247401)

> 还有一个问题就是在亮色主题下,鼠标悬浮在“关闭”按钮上时显示的是黑色叉叉,但系统窗口却始终显示红底白色叉叉。这个暂时没想好怎么改,可能需要对源码动手。 这个问题也修改了。 https://github.com/kira-96/framelesshelper/commit/a0fcb0ae6df6767a24f217b6c31b1d8265a23933 ![image](https://github.com/wangwenx190/framelesshelper/assets/22876709/3d3ef8aa-eaad-4349-9f20-e5ad8235a42a)

> alpha值设置的有点太小了吧? 我这边是对比windows系统窗口调整的,个人感觉上基本一致。如果你觉得太小,可以做一些修改,但建议不要把alpha设太大。

文件管理器标题栏 ![image](https://github.com/wangwenx190/framelesshelper/assets/22876709/dc712188-5fa5-4df9-bb2b-6842655b944b) ![image](https://github.com/wangwenx190/framelesshelper/assets/22876709/36873b42-4afb-40a2-b50b-1024a87bd70e) 自定义的标题栏 ![image](https://github.com/wangwenx190/framelesshelper/assets/22876709/da83b53b-148c-4cb5-8f0f-24f5fdcf144e) ![image](https://github.com/wangwenx190/framelesshelper/assets/22876709/2db5e15e-5e1e-43de-9ff6-668dfdbed62c) 我觉得差不多啊。难道系统主题有差别?

> FramelessHelper你是基于最新代码构建的吗 使用的你修改后的版本 https://github.com/wangwenx190/framelesshelper/commit/7fdea56785c003d7c27354a7205068cb7855492f

很不错的想法,希望这篇_笔记_能帮助到你。