2

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

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 中显示键。

4

0 回答 0