如何在Qt上显示键盘?

发布于 2024-11-02 03:28:31 字数 81 浏览 4 评论 0原文

关于当焦点位于文本框时如何显示键盘的想法吗?就像 Android 键盘一样,需要时会自动出现。我怎样才能在qt上做到这一点?

谢谢!

Any idea on how to show the keyboard when the focus is on a textbox? Just like android keyboard that is automatically appears when it is necessary. How can I do it on qt?

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你与昨日 2024-11-09 03:28:31

如果您使用 QML,则需要调用

Qt.inputMethod.show();

如果您使用纯 C++ 编程,则需要在同一类 QInputMethod 中使用方法 show()。

If you use QML you need invoke

Qt.inputMethod.show();

If you programming in pure C++ you need use method show() in same class QInputMethod.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文