gpt4 book ai didi

qt - 如何在 QML 中按下回车键时触发按钮单击

转载 作者:行者123 更新时间:2023-12-03 16:13:55 33 4
gpt4 key购买 nike

我的 qml 代码中有一些按钮和相关功能,我希望在按下 Enter 键时触发一个按钮。所有按钮都由 onClick 事件处理,即当我的鼠标单击按钮时,它会执行相关的功能。我想在按下回车键时执行点击

最佳答案

您可以对不同的信号使用react:

Button {
id: _button
text: "Button"

function activate() { console.debug("Button activated"); }

onClicked: _button.activate()
Keys.onReturnPressed: _button.activate() // Enter key
Keys.onEnterPressed: _button.activate() // Numpad enter key
}

您的按钮需要获得有关按键的通知。如果您希望某个特定按钮默认获得焦点,只需在按钮中添加
focus: true

关于qt - 如何在 QML 中按下回车键时触发按钮单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54529565/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com