用鼠标发送加速器来执行文本选择

发布于 2024-12-07 08:41:17 字数 147 浏览 0 评论 0 原文

我需要使用鼠标而不是 ctrl+A 选择文本 我尝试过:

sendAcceleratorKey(MouseEvent.BUTTON1, "");

但我不知道我可以设置哪个参数来表示用鼠标单击并让鼠标强制选择文本。

I need to make selection of text using mouse instead of ctrl+A
I tried:

sendAcceleratorKey(MouseEvent.BUTTON1, "");

but I don't know which argument could I set to say make a click with mouse and let the mouse enforced to select the text.

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

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

发布评论

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

评论(1

作业与我同在 2024-12-14 08:41:17

如果文本位于 JTextComponent 中selectAll() 可能是 MouseListener 中的合适选择。

附录:您还可以利用select-all 操作,即 默认绑定control-Ameta-A在各种平台上。

您的 sscce 可能有助于做出决定。 此处有一个相关示例。

If the text is in a JTextComponent, selectAll() may be a suitable choice in your MouseListener.

Addendum: You may also be able to leverage the select-all Action, which is bound to control-A or meta-A by default on various platforms.

Your sscce may be helpful in deciding. There's a related example here.

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