0
Drawerをアイテムに関連させ、Rectangleが決して隠されないようにしたい。Drawerコンポーネントの親を変更するとウィンドウが応答しない
引き出しコンポーネントの親をアイテムに変更すると、引き出しが機能しなくなり、ウィンドウが5〜10秒後に応答しなくなります。
私は親に何も変更しなければ、正常に動作します。引き出しをスワイプすると、長方形が非表示になります。
誰かが間違っていることを知っていますか?
Window{
id: window
visible: true
width: 1280
height: 800
Row{
width: parent.width
height: parent.height
Rectangle{
width: 80
height: parent.height
z: 2
}
Item{
id: mainView
height: parent.height
width: parent.width - 80
Drawer{
parent: mainView // <-- causes not responding
width: parent.width
height: parent.height
edge: Qt.LeftEdge
}
}
}
}
ありがとう、私は自分のコンポーネントを作った – KMK