0
這是我的QML文件:如何使QML窗口無邊界?
Rectangle {
width:640;
height:360;
Text {
text:qsTr("Agritrade");
anchors.centerIn:parent;
}//text
MouseArea {
anchors.fill:parent;
onClicked: {
Qt.quit();
}
}//mouse area
}
我想使窗口無國界。如何設置上面Rectangle的屬性?
你可以像在這個崗位http://stackoverflow.com/questions/2235360/making-a-borderless- window-with-for-qt –
使用Rectangle的QML屬性的任何解決方案? – jondinham