Pass Events Between QML Objects
问题 I have a situation where I would like to pass a QML event to another QML item in the middle of the initial event handler. e.g. Item { id: item1 Keys.onPressed: { // Pre-process... passEventToObject(event, item2); // Post-process based on results of event passing... } } TextInput { id: item2 // Expect key press event to be handled by text input } What can I do to acheive passEventToObject ? Notes: I don't have access to modify Keys.onPressed inside item2 , it's a QML built-in ( TextInput ).