我有多个 QML 文件。我只是想链接它们。然后我想从我导航到的每个页面返回我的主页。我在每个页面中都使用加载器这是我的代码。
import QtQuick 1.1
Rectangle{
id:welcome
width:480
height:272
Loader{
id:loader
focus:false
anchors.fill: parent
}
gradient: Gradient {
GradientStop { position: 0.0; color: "light blue" }
GradientStop { position: 1.0; color: "blue" }
}
Text{
text:"\n\t\tPRESS ENTER"
font.bold:true
font.pointSize: 17
}
Button {
id: wel
height:30;
x:parent.width/2-30
y:parent.height/2-30
focus:true
border.color:"black"
opacity: activeFocus ? 1.0 : 0.5
Text{
text:"WELCOME"
anchors.horizontalCenter:wel.horizontalCenter;
anchors.verticalCenter:wel.verticalCenter;
}
Keys.onReturnPressed: {
wel.focus=false
loader.focus=true;
anchors.fill=parent
loader.source="Home.qml";
//welcome.visible=false;
}
}
}
我的问题是,每当我单击按钮时,它都会加载新文件。但是欢迎页面不会去。两个文件都将重叠。当我做 visible=false 时,完整的 UI 就会消失。我得到一个白屏。谁能帮我解决这个问题?如何加载其他文件?