Skip to content
Snippets Groups Projects
Select Git revision
  • 7ff9de0a7e92082b49b7938fc2abe3daa60057df
  • master default protected
2 results

test_lifoqueue.py

Blame
  • Main.qml 438 B
    import QtQuick
    
    Window {
        width: 640
        height: 480
        visible: true
        title: qsTr("Hello World")
    
        Rectangle {
            id: rectangle
            x: 220
            y: 140
            width: 200
            height: 200
            color: "#110fb3"
    
            Text {
                id: _text
                x: 59
                y: 80
                width: 53
                height: 41
                text: qsTr("TEXTE")
                font.pixelSize: 30
            }
        }
    }