TG-PlatformPlus/qml/EditLst.qml

16 lines
272 B
QML
Raw Normal View History

2026-03-02 14:29:58 +08:00
import QtQuick
EditLstForm {
id: self
anchors.fill: parent
property var _readonly: true
visible: true
Connections{
target: self
function onDeleteEditLstClick(row)
{
self.cmdLstmodel.remove(row)
}
}
}