import Qt 4.7 Rectangle { id: simplebutton color: "grey" width: 800; height: 600 Text{ id: buttonLabel anchors.centerIn: parent text: "中文" } MouseArea{ id: buttonMouseArea anchors.fill: parent onClicked: console.log(buttonLabel.text + " clicked" ) } }