我正在使用QtQuick.Controls 1.0
并且QtQuick.Controls.Styles 1.0
我找不到正确对齐ComboBox
垂直和右侧标签的方法。
这是我当前的代码
import QtQuick 2.0
import QtQuick.Controls 1.0
import QtQuick.Controls.Styles 1.0
ComboBox {
id: comboCategories
width: 230
height: 30
style: ComboBoxStyle {
background: Rectangle {
id: rectCategory
width: comboCategories.width
height: comboCategories.height
color: "white"
}
label: Text {
anchors.verticalCenter: parent.verticalCenter
anchors.right: background.right
font.pointSize: 12
color: "#808080"
text: control.currentText
}
}
}
但是标签停留在我的元素的左上角,似乎不受锚点的影响。我也尝试parent
用control
或background
没有效果替换