gpt4 book ai didi

qt - 如何在 QtQuick/QML 中创建动画、可变大小的 Accordion 组件

转载 作者:行者123 更新时间:2023-12-03 09:10:22 30 4
gpt4 key购买 nike

我想创建一个类似 Accordion 的动画元素,单击时会展开。这是它应该如何工作的。

Accordion animation

当用户单击红色矩形之一时,作为实际内容的绿色矩形应该展开。我希望这个扩展是动画的。每个红色标题的绿色矩形内容的高度可能不同。

我已经能够实现点击展开行为,但没有动画。这是我目前拥有的代码。

AccordionElement.qml

import QtQuick 2.5
import QtQuick.Layouts 1.1

ColumnLayout {
id: rootElement

property string title: ""
property bool isOpen: false
default property alias accordionContent: contentPlaceholder.data

anchors.left: parent.left; anchors.right: parent.right

// Header element
Rectangle {
id: accordionHeader
color: "red"
anchors.left: parent.left; anchors.right: parent.right
height: 50
MouseArea {
anchors.fill: parent
Text {
text: rootElement.title
anchors.centerIn: parent
}
cursorShape: Qt.PointingHandCursor
onClicked: {
rootElement.isOpen = !rootElement.isOpen
}
}
}

// This will get filled with the content
ColumnLayout {
id: contentPlaceholder
visible: rootElement.isOpen
anchors.left: parent.left; anchors.right: parent.right
}
}

这就是它在父元素中的使用方式:

Accordion .qml

ColumnLayout {
Layout.margins: 5

visible: true

AccordionElement {
title: "Title1"
accordionContent: Rectangle {
anchors.left: parent.left; anchors.right: parent.right
height: 20
color: "green"
}
}
AccordionElement {
title: "Title2"
accordionContent: Rectangle {
anchors.left: parent.left; anchors.right: parent.right
height: 50
color: "green"
}
}

AccordionElement {
title: "Title3"
accordionContent: Rectangle {
anchors.left: parent.left; anchors.right: parent.right
height: 30
color: "green"
}
}

// Vertical spacer to keep the rectangles in upper part of column
Item {
Layout.fillHeight: true
}
}

这会产生以下结果(当所有矩形都展开时):

Expanded

理想情况下,我希望绿色矩形从红色矩形中滚出(就像打印机中的纸张一样)。但我对如何做到这一点感到困惑。我尝试了几种使用 height 属性的方法,并且我让绿色矩形消失,但白色空间仍然保留在红色矩形下方。

如有任何帮助,我们将不胜感激。我缺少一种方法吗?

最佳答案

这是一个快速简单的示例:

// AccItem.qml
Column {
default property alias item: ld.sourceComponent
Rectangle {
width: 200
height: 50
color: "red"
MouseArea {
anchors.fill: parent
onClicked: info.show = !info.show
}
}
Rectangle {
id: info
width: 200
height: show ? ld.height : 0
property bool show : false
color: "green"
clip: true
Loader {
id: ld
y: info.height - height
anchors.horizontalCenter: info.horizontalCenter
}
Behavior on height {
NumberAnimation { duration: 200; easing.type: Easing.InOutQuad }
}
}
}

// Acc.qml
Column {
spacing: 5
AccItem {
Rectangle {
width: 50
height: 50
radius: 50
color: "blue"
anchors.centerIn: parent
}
}
AccItem {
Rectangle {
width: 100
height: 100
radius: 50
color: "yellow"
anchors.centerIn: parent
}
}
AccItem {
Rectangle {
width: 75
height: 75
radius: 50
color: "cyan"
anchors.centerIn: parent
}
}
}

您不必要地使 anchor 和布局变得过于复杂。问题似乎并不需要这些。

更新:我稍微改进了实现,与最初的相比,内容实际上会像纸张从打印机中滑出一样从标题中滑出,而不是简单地被揭开,并且还删除了误报绑定(bind)循环警告的来源。

enter image description here

关于qt - 如何在 QtQuick/QML 中创建动画、可变大小的 Accordion 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43093280/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com