QML添加右鍵菜單


MouseArea {
        id: mouseRegion
        anchors.fill: parent;
        acceptedButtons: Qt.LeftButton | Qt.RightButton // 激活右鍵(別落下這個)
 
        onClicked: {
            if (mouse.button == Qt.RightButton) { // 右鍵菜單
                //
                contentMenu.popup()
            }
        }
    }
 
    Menu { // 右鍵菜單
        //title: "Edit"
        id: contentMenu
 
        MenuItem {
            text: "Cut"
            shortcut: "Ctrl+X"
            onTriggered: {}
        }
 
        MenuItem {
            text: "Copy"
            shortcut: "Ctrl+C"
            onTriggered: {}
        }
 
        MenuItem {
            text: "Paste"
            shortcut: "Ctrl+V"
            onTriggered: {}
        }
 
        MenuSeparator { }
 
        Menu {
            title: "More Stuff"
 
            MenuItem {
                text: "Do Nothing"
            }
        }
    }

 

效果圖


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM