combobox drop menu style on Mac OS X
Unsolved
QML and Qt Quick
-
Hi everyone!
I have a question about combobox style. In my application I need to change dropdown menu style. I found this:
style: ComboBoxStyle { __dropDownStyle: MenuStyle { frame: Rectangle { implicitHeight: 200 implicitWidth: control.width color: "green" clip: true } itemDelegate.label: Text { color: styleData.selected ? "red" : "black" text: styleData.text } } }
But on OS X this code does't work. How I can change menu style for combobox?