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

Resultat.qml

Blame
  • 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
    
            }
        }
    }