FluentUI/src/Qt6/imports/FluentUI/Controls/FluPaneItemExpander.qml

19 lines
462 B
QML

import QtQuick
import QtQuick.Controls
import FluentUI
FluObject {
readonly property string key : FluTools.uuid()
property int _idx
property bool visible: true
property string title
property var icon
property bool disabled: false
property bool iconVisible: true
property bool isExpand: false
property bool showEdit
property Component iconDelegate
property Component menuDelegate
property Component editDelegate
}