码迷,mamicode.com
首页 > 其他好文 > 详细

QML添加右键菜单

时间:2016-01-07 16:46:09      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:

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"
            }
        }
    }

 

效果图
技术分享

QML添加右键菜单

标签:

原文地址:http://www.cnblogs.com/-Donny/p/5109948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!