新手入门
- 积分
- 16
- 金钱
- 16
- 注册时间
- 2021-11-16
- 在线时间
- 3 小时
|
楼主 |
发表于 2021-11-25 10:34:01
|
显示全部楼层
我用的是StackView控件,在每个页面加销毁清空,貌似解决了这个问题,不提示
切换用替换的方式
case 'page0':systemsetupstackview.replace({trage:null,item: systemsetuppage0, replace: true, destroyOnPop: true});break;
其中的一个页面 Component.onDestruction: 这个信号
Item {
id:root
property string colorback : "#052641"//"#17335c"
property string _colorback : "#3b7bb8"
property int bottomDistance: 0
property int divisor: 8
Rectangle{
anchors.fill: parent
color: colorback
Component.onDestruction: {
textfield_loop.text=""
textfield_addr.text=""
textfield_channel.text=""
textfield_notes.text=""
textfield_attribute.text=""
textfield_sensitivity.text=""
textfield_twocode.text=""
inputPanel.visible=false
//console.log("destruction, current depth - page0");
} |
|