如何将我的 Delphi Android 应用程序更改为“深色模式”?
我在Delphi 10.3的Android中有我的应用程序,并且我试图将其转换为“暗模式”,但是许多控件都缺少颜色属性,因此有些仍然是明亮的白色。我不知道如何处理似乎存在的“样式”。 您有什么暗示可以给我如何实施此功能?
I have my app in Delphi 10.3 for Android and I'm trying to convert it to "dark mode" but many controls are missing a color attribute so some are still bright white. I have no idea how to handle the "Styles" that seem to be around.
Are there any hints you can give me on how to implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将一个测试程序放在 github 存储库中,但没有任何解释。
未使用 10.3 进行测试,但我认为应该可以工作。
Light_Dark_Side
目标是首先检测暗/亮模式,然后检查如何使用 TStyleManager
I put a test program in a github repository but without any explanations.
Not tested with 10.3 but should work I think.
Light_Dark_Side
Goal was first to detect Dark/Light mode and then check how to use TStyleManager
通过在我的表格上放一本样式书并加载预设模板(在我的情况下为黑暗),我可以将应用程序更改为“黑暗模式”,而无需我自己更改。
by putting a stylebook on my form and loading a PRESET TEMPLATE (dark in my case) I was able to change my app to dark mode without any design changes myself.