如何将事件传递给其他对象?

发布于 2024-11-01 11:23:55 字数 83 浏览 4 评论 0原文

我有一个文本框,当按键事件完成时,我希望我的菜单突出显示,所以我正在寻找从文本字段传递到菜单的事件。那么,有什么办法吗?

提前致谢 :)

I have a textBox and when the An keyevent is done i want my menu to get highlighted So i am looking for event passing from the textfield to the menu. So, is there any way to that ?

Thanks in Advance :)

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

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

发布评论

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

评论(2

苄①跕圉湢 2024-11-08 11:23:55

您可以添加 KeyListener 到文本框,并在 keyPressed 方法就可以实现逻辑根据标准操作菜单。

You can add a KeyListener to the textBox, and in keyPressed method you can implement the logic to manipulate the menu based on the criteria.

风渺 2024-11-08 11:23:55

也许这是“坏方法”,但尝试创建你的菜单类,扩展旧的菜单类,并添加一些由文本字段中的动作监听器调用的公共方法(带有你的突出显示逻辑)

maybe it's "bad way", but try to make your menu class, extending old one, and add there some public method (with your highlighting logic) invoked by action listener in text filed

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