4
0
mirror of https://github.com/QuasarApp/QtDeployer.git synced 2025-05-05 17:49:33 +00:00
2018-05-07 15:34:38 +03:00

15 lines
202 B
QML
Executable File

import QtQuick 2.7
import QtQuick.Controls 2.0
ToolBar {
id: control
property string text
Label {
text: control.text
anchors.centerIn: parent
font.pointSize: control.font.pointSize + 3
}
}