如何将事件传递给其他对象?
我有一个文本框,当按键事件完成时,我希望我的菜单突出显示,所以我正在寻找从文本字段传递到菜单的事件。那么,有什么办法吗?
提前致谢 :)
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以添加 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.
也许这是“坏方法”,但尝试创建你的菜单类,扩展旧的菜单类,并添加一些由文本字段中的动作监听器调用的公共方法(带有你的突出显示逻辑)
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