QML ComboBox 项目 DropDownMenu 样式
我想在我的项目中使用 ComboBox
类型.是否可以更改下拉菜单的外观(颜色、形状、文本样式)或者我需要使用矩形、ListView
s 和其他类型的组合?
I want to use the ComboBox
type in my project. Is it possible to change the appearance of the drop-down menu (color, shape, text style) or do I need to use a combination of rectangles, ListView
s and other types?
以下代码应用了自定义,但没有为保持灰色的下拉菜单定义任何修改:
The following code applies customizations but no modification is defined for the drop-down menu which remains gray:
ComboBox {
currentIndex: 2
activeFocusOnPress: true
style: ComboBoxStyle {
id: comboBox
background: Rectangle {
id: rectCategory
radius: 5
border.width: 2
color: "#fff"
Image {
source: "pics/corner.png"
anchors.bottom: parent.bottom
anchors.right: parent.right
anchors.bottomMargin: 5
anchors.rightMargin: 5
}
}
label: Text {
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
font.pointSize: 15
font.family: "Courier"
font.capitalization: Font.SmallCaps
color: "black"
text: control.currentText
}
}
model: ListModel {
id: cbItems
ListElement { text: "Banana" }
ListElement { text: "Apple" }
ListElement { text: "Coconut" }
}
width: 200
}
推荐答案
当前的公共 API 不允许自定义下拉菜单 这里.Qt 5.4
,即Styles 1.3
,只是引入了一些属性来自定义字体和文本(docs 这里),但仍然无法公开访问下拉自定义.
The current public APIs does not allow customization of the drop-down menu as stated here. Qt 5.4
, i.e. Styles 1.3
, just introduced some properties to customize fonts and text (docs here) but still no public access to drop-down customization.
此外,链接中提供的示例不适用于较新版本的 Qt.这是我用 Qt 5.3、Qt 5.4 和 Qt 5.5 测试过的修改版本(记得在导入中添加 import QtQuick.Controls.Private 1.0
):
Also, the example provided in the link does not work with the newer versions of Qt. Here is a modified version I've tested with Qt 5.3, Qt 5.4 and Qt 5.5 (remember to add import QtQuick.Controls.Private 1.0
to the imports):
ComboBox {
id: box
currentIndex: 2
activeFocusOnPress: true
style: ComboBoxStyle {
id: comboBox
background: Rectangle {
id: rectCategory
radius: 5
border.width: 2
color: "#fff"
}
label: Text {
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
font.pointSize: 15
font.family: "Courier"
font.capitalization: Font.SmallCaps
color: "black"
text: control.currentText
}
// drop-down customization here
property Component __dropDownStyle: MenuStyle {
__maxPopupHeight: 600
__menuItemType: "comboboxitem"
frame: Rectangle { // background
color: "#fff"
border.width: 2
radius: 5
}
itemDelegate.label: // an item text
Text {
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
font.pointSize: 15
font.family: "Courier"
font.capitalization: Font.SmallCaps
color: styleData.selected ? "white" : "black"
text: styleData.text
}
itemDelegate.background: Rectangle { // selection of an item
radius: 2
color: styleData.selected ? "darkGray" : "transparent"
}
__scrollerStyle: ScrollViewStyle { }
}
property Component __popupStyle: Style {
property int __maxPopupHeight: 400
property int submenuOverlap: 0
property Component frame: Rectangle {
width: (parent ? parent.contentWidth : 0)
height: (parent ? parent.contentHeight : 0) + 2
border.color: "black"
property real maxHeight: 500
property int margin: 1
}
property Component menuItemPanel: Text {
text: "NOT IMPLEMENTED"
color: "red"
font {
pixelSize: 14
bold: true
}
}
property Component __scrollerStyle: null
}
}
model: ListModel {
id: cbItems
ListElement { text: "Banana" }
ListElement { text: "Apple" }
ListElement { text: "Coconut" }
}
width: 200
}
这里 __dropDownStyle
被分配了一个 MenuStyle
类型.这种类型的一些属性被定制以获得所需的样式,特别是 itemDelegate
(它定义了组合框中项目的外观)和 frame
(整体背景).有关详细信息,请参阅链接的 MenuStyle
API.总体结果:
Here __dropDownStyle
is assigned with a MenuStyle
type. Some properties of such type are customized to obtain the desired style, in particular itemDelegate
(which defines the appearance of an item inside the combobox) and frame
(overall background). Refer to the linked MenuStyle
APIs for more details. Overall result:
请注意,这种方法在 Windows 和 Android 上完美运行,而在 OSX 上,代码被完全忽略.可以检查 Qt 安装中的 qml 样式文件(搜索像 qml/QtQuick/Controls/Styles/Desktop
这样的子路径)以查看 w.r.t 的变化.Windows 并尝试调整提供的解决方案.这部分留给读者.
Note that this approach does perfectly work on Windows and Android whereas on OSX the code is completely ignored. One can check the qml style file inside the Qt installation (search for a subpath like qml/QtQuick/Controls/Styles/Desktop
) to see what changes w.r.t. Windows and try to adapt the provided solution. This part is left up to the reader.
相关文章