Details
-
Bug
-
Resolution: Unresolved
-
P1: Critical
-
None
-
6.10
-
None
Description
import QtQuick import QtQuick.Controls.Basic ApplicationWindow { id: window width: 600 height: 400 visible: true TapHandler { onTapped: dialog.open() } Dialog { id: dialog width: 200 height: 200 contentItem.ContextMenu.menu: Menu { Action { text: "Test" } } // Also doesn't work // Rectangle { // color: "tomato" // anchors.fill: parent // ContextMenu.menu: Menu { // Action { // text: "Test" // } // } // } } }
Attachments
Issue Links
- relates to
-
QTBUG-67331 Make it possible to react to context menu events
- In Progress