0
我正在使用QtQuick.Controls 1.0
和QtQuick.Controls.Styles 1.0
,我無法找到正確對齊垂直和右側ComboBox
標籤的方法。使用自定義ComboBoxStyle將標籤居中在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
}
}
}
但標籤留在我的元素的左上方似乎並沒有被錨的影響。我也試圖與任何效果與control
或background
更換parent