The action type has all the properties of QAction .
The action type has all the properties of QAction . The properties are:
slot
action.trigger - invoke the action
bool
action.enabled - true if the action is enabled
string
action.text - the text associated with the action
Actions are used like this:
Item { MouseArea { onClicked: myaction.trigger() } State { name: "enabled"; when: myaction.enabled == true } Text { text: someaction.text } }
另请参阅 QML 基本类型 .