Qml虚拟键盘按键

时间:2018-09-21 11:21:38

标签: qt qml qtvirtualkeyboard

我能够使用下面的代码显示虚拟键盘。

import QtQuick.VirtualKeyboard 2.0
Window {
visible: true
width: 640
height: 480
title: qsTr("Hello KeyBoard")

    InputPanel {
        id: inputPanel
        z: 89
        y: 0
        anchors.left: parent.left
        anchors.right: parent.right



    }
}

如何从InputPanel获取按下的“键”。我不需要在TextField中显示键。

0 个答案:

没有答案