可折叠组件 (Expandables)
CollapsibleDialog——可折叠/展开的手风琴式树形对话框。
概述
CollapsibleDialog 提供手风琴式可折叠面板对话框。每个面板包含一个展开/折叠按钮和自定义内容区域,适合配置界面和高级参数设置。
核心类
| 类 | 说明 |
|---|---|
SectionExpandButton | 三角形箭头按钮,点击展开/折叠 |
CollapsibleDialog | 树形对话框容器,add_section() 添加面板 |
用法
from quatm.GUI.theexpandables import CollapsibleDialog
dialog = CollapsibleDialog(title="高级设置", parent=parent)
dialog.add_section("相机设置", QLabel("曝光时间"))
dialog.add_section("触发设置", QLabel("触发源"))