Skip to content
Snippets Groups Projects
Select Git revision
  • 4e61b22561cbc814ff13afe7e70e85fde7ef8626
  • master default
2 results

Resultat.qml

Blame
  • Resultat.qml 642 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
    
            }
        }
    }