当在 JList 中选择一个项目时,我将如何编码?

发布于 2024-09-06 15:08:43 字数 154 浏览 6 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(2

红衣飘飘貌似仙 2024-09-13 15:08:43

使用 addListSelectionListener。您可以创建 ListSelectionListener 完成您想要的工作。

myList.addListSelectionListener(new ListSelectionListener()
{
  public void valueChanged(ListSelectionEvent ev)
  {
    // handle ev
  } 
});

Use addListSelectionListener. You can create a subclass (anonymous or not) of ListSelectionListener that does the work you want.

myList.addListSelectionListener(new ListSelectionListener()
{
  public void valueChanged(ListSelectionEvent ev)
  {
    // handle ev
  } 
});
匿名。 2024-09-13 15:08:43

您应该为 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.

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