デスクトップ用の QtQuick プロジェクトがあります。それは非常に簡単です:
// import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
import QtQuick 1.1
Rectangle {
width: 360
height: 360
Grid
{
id: xGrid
width: parent.width
height: parent.height
columns: 2
spacing: 1
Rectangle
{
height: parent.height
width: 10
color: "#ff0000"
Text {
id: xText
text: qsTr("t\na\ns")
}
}
TextEdit
{
id: xTextEdit
height: parent.height
width: 350
Keys.onEnterPressed: {
console.log(event.key)
xText.text = (qsTr("A"))
}
}
}
}
コードが思いどおりに実行されません。Keys.onEnterPressed
キャプチャされないように見えるので、動作を試してみKeys.onPressed
ましたが、 を押すEnterとeven.key
16777220 が返される理由がわかりません。
誰もこの問題を抱えていますか?どうすれば解決できますか?
ご回答有難うございます!