当在 JList 中选择一个项目时,我将如何编码?
我有一个 JList,其中有 5 个选项,当选择或单击其中一个项目时,我希望它旁边的文本区域显示与所单击的项目相关的一段文本。它应该对列表中的每个项目执行此操作,但我似乎无法找到如何在 API 中执行此操作,
我的程序如何知道是否选择了 JList 中的项目以便我可以使用数据?
I have a JList with 5 options in it and when one of the items becomes selected or clicked i want the text area next to it to show a paragraph of text relative to the item clicked. It should do this for each item in the list but I cant seem to find how to do it in the API
How would my program know if an item in the JList was selected so I can work with the data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
addListSelectionListener
。您可以创建ListSelectionListener
完成您想要的工作。Use
addListSelectionListener
. You can create a subclass (anonymous or not) ofListSelectionListener
that does the work you want.您应该为 JList 上的事件注册一个侦听器。当 Swing UI 第一次触发时,这个 Listener 类将收到消息并做出相应的反应。
You should register a Listener for events on your JList. When the Swing UI fires one off, this Listener class will get the message and react accordingly.