import QtQuick import QtQuick.Controls ApplicationWindow { visible: true width: 320 height: 200 title: "Hello PySide6 Quick" property int count: 0 Column { anchors.centerIn: parent spacing: 12 Text { text: "Clics : " + count anchors.horizontalCenter: parent.horizontalCenter } Button { text: "Cliquer" onClicked: count++ } } }