28 lines
607 B
QML
28 lines
607 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout {
|
|
anchors.centerIn: parent
|
|
spacing: Dimensions.s
|
|
height: implicitHeight
|
|
|
|
H1 {
|
|
Layout.alignment: Qt.AlignCenter
|
|
text: qsTr("Keine Verbindung zur Datenbank!")
|
|
color: Colors.foreground
|
|
}
|
|
H2 {
|
|
Layout.alignment: Qt.AlignCenter
|
|
text: qsTr("Programm kann nicht starten…")
|
|
color: Colors.foreground
|
|
}
|
|
Button {
|
|
Layout.topMargin: Dimensions.l
|
|
Layout.alignment: Qt.AlignCenter
|
|
text: qsTr("Beenden")
|
|
|
|
onClicked: Qt.quit()
|
|
}
|
|
}
|