文件名称:这时整个程序的代码如下-Qt简介包含Qt的系统的架构
文件大小:14.45MB
文件格式:PPT
更新时间:2024-05-13 20:52:22
qt教程
这时整个程序的代码如下: import Qt 4.6 Rectangle{ id:mainWindow; width:200; height:200 Text { id: myText text: “Hello World!” anchors.centerIn:parent } Rectangle{ id:myButton; width:50; height:30 x:75; y:136; radius:10; color:”blue” MouseArea{id:myMouseArea; anchors.fill:parent} } states: [ State { name: "state1" PropertyChanges { target: myText font.pointSize:20; color:"red" rotation:30; opacity:0.5 } when:myMouseArea.pressed } ] }