Select Git revision
Resultat.qml
Jolibois Simon authored
Resultat.qml 656 B
import QtQuick 2.11
import QtQuick.Window 2.11
import QtQuick.Layouts 1.1
import QtQuick.Controls 2.15
Window {
visible : true
width : 700
height : 200
title : qsTr("Résultat")
property alias rectangle : rectangle
Rectangle {
id : rectangle
color : "#ffffff"
anchors.fill : parent
property alias text1 : text1
Text {
id : text1
text : "Text"
font.pixelSize : 30
font.family : "Tahoma"
anchors.fill : parent
horizontalAlignment : Text.AlignHCenter
verticalAlignment : Text.AlignVCenter
}
}
}