我正在尝试像这样在qtquickcontrols2.conf
文件中定义应用程序的样式:
[Controls]
Style=Material
[Material]
Theme=Light
Variant=Dense
Accent=DeepOrange
Primary=Indigo
Foreground=Blue
Background=Grey
对于四种颜色(Accent
,Primary
,Foreground
和Background
)中的每一种,我也想指定shade。但是我找不到应该使用的语法。
这可能吗?
答案 0 :(得分:1)
当前不可能。您可以在根对象上设置它:
ApplicationWindow {
// ...
Material.foreground: Material.color(Material.Blue, Material.ShadeA100)
}
这将传播到应用程序中的所有其他控件。