Show logo in QtQuick Controls 2 style

master
Jos van den Oever 2017-08-25 18:15:58 +02:00
parent 6d3e329a6a
commit f0fffd1dde
1 changed files with 13 additions and 8 deletions

View File

@ -22,16 +22,21 @@ ApplicationWindow {
anchors.top: bar.bottom
anchors.bottom: parent.bottom
currentIndex: bar.currentIndex
ComboBox {
currentIndex: qtquickIndex
model: styles
textRole: "display"
onCurrentIndexChanged: {
if (currentIndex != qtquickIndex) {
widgets.currentIndex = currentIndex;
application.close();
ColumnLayout {
ComboBox {
currentIndex: qtquickIndex
model: styles
textRole: "display"
onCurrentIndexChanged: {
if (currentIndex != qtquickIndex) {
widgets.currentIndex = currentIndex;
application.close();
}
}
}
Image {
source: "logo.svg"
}
}
RowLayout {
TextField {