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

Rectangle 响应按键

时间:2015-08-27 22:30:37      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:

import QtQuick 2.4
import QtQuick.Window 2.2


Window {
    visible: true
    MainForm {
        anchors.fill: parent

    }

    Rectangle{
        width: 300
        height: 200
        color: "#c1c1c1"
        focus:true
        Keys.enabled: true
        Keys.onEscapePressed: Qt.quit()
        Keys.onBackPressed: Qt.quit()

        Keys.onPressed: {
            switch(event.key){
            case Qt.Key_0:
            case Qt.Key_1:
            case Qt.Key_2:
            case Qt.Key_3:
            case Qt.Key_4:
            case Qt.Key_5:
            case Qt.Key_6:
            case Qt.Key_7:
            case Qt.Key_8:
            case Qt.Key_9:
                event.accepted=true
                keyView.text=event.key-Qt.Key_0
                break;
            }
        }
    }

    Text{
        id:keyView
        font{
            bold:true
            pixelSize: 24
        }
        text:qsTr("key")
        anchors.centerIn: parent
    }
}
Qt.Key_0为48,
Qt.Key_1为49依次类推,所有要减去Qt.Key_0才可以正常显示0,1,2...

Rectangle 响应按键

标签:

原文地址:http://www.cnblogs.com/yshyee/p/4764664.html

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