我有一个简单的QML,里面有ApplicationWindow
,RowLayout
和一堆Buttons
。我按照the docs应用了Qt Quick Controls 2 Material
主题,但没有任何改变。怎么了?
import QtQuick 2.7
import QtQuick.Controls 2.0
import QtQuick.Controls.Material 2.0
import QtQuick.Layouts 1.3
ApplicationWindow {
Material.theme: Material.Dark
Material.accent: Material.Orange
id: window
visible: true
RowLayout {
anchors.horizontalCenter: window.horizontalCenter
anchors.bottomMargin: 32
Button {
text: "A"
}
Button {
text: "B"
}
Button {
text: "C"
}
}
}
答案 0 :(得分:7)
导入QtQuick.Controls.Material 2.0
并设置一些材料特定属性不适用材质主题。如果使用此处描述的方法之一设置主题,则将使用它们: