Qt Components Hildon  0.20
QML components for Maemo5 with Hildon styling.
 All Classes Functions Properties Groups Pages
combobox.qml
import QtQuick 1.0
import org.hildon.components 1.0
Window {
id: window
title: qsTr("ComboBox Example")
visible: true
Column {
id: column
anchors.centerIn: parent
width: 300
width: parent.width
model: [1, 2, 3, 4, 5]
}
width: parent.width
model: [1, 2, 3, 4, 5]
editable: true
}
}
}