我有一个工具栏ToolBar
,我想要一个下拉按钮。
我尝试使用ComboBox
,但按钮的大小会根据列表模型项的长度进行调整。而且我不知道如何对点击事件进行操作。
ToolBar {
id: toolBar
anchors.margins: 0
Layout.fillWidth: true
layer.enabled: true
RowLayout {
ComboBox {
id: databaseTypeInput
style: ComboBoxStyle {
label: ToolButton {
implicitWidth: 20
implicitHeight: 20
iconSource: "Image.png"
} // ToolButton
}
} // ComboBox
}
}
无论如何,我认为这是一种错误的做法。
有什么方法可以使用 QtQuck 2.0 轻松创建下拉按钮?