文件名称:这时整个程序的代码如下-QT界面设计
文件大小:13.53MB
文件格式:PPT
更新时间:2024-05-16 03:18:26
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 } ] }