4
0
mirror of https://github.com/QuasarApp/Hanoi-Towers.git synced 2025-05-07 15:09:33 +00:00
2018-04-06 14:08:14 +03:00

21 lines
404 B
QML

import QtQuick 2.9
import QtQuick.Controls 2.2
import "./base" as Base
Dialog {
standardButtons: DialogButtonBox.Ok
x: (parent.width - width) / 2
y: (parent.height - height) / 2
property alias text : textContainer.text
Base.BaseText {
id: textContainer
anchors.fill: parent
horizontalAlignment: Qt.AlignLeft
verticalAlignment: Qt.AlignTop
}
}