如何动态地将 JList 中的单行加粗?

发布于 2024-12-19 14:55:36 字数 63 浏览 2 评论 0原文

我需要在 JList 组件中加粗一行以显示活动行。它应该动态完成,以便让用户立即看到活动行中的更改。我该怎么做?

I need to make bold a row in a JList component to show the active row. It should be done dynamically to let user see the change in the active row immediately. How can I do this?

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

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

发布评论

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

评论(2

愛上了 2024-12-26 14:55:36

查看渲染器中的 CustomCellRenderer,您可以根据 isSelected 参数更改所显示标签的颜色。

Take a look on CustomCellRenderer in your renderer you could change the color of the presented label based on isSelected argument.

混浊又暗下来 2024-12-26 14:55:36

如果您想更改所选项目的颜色,可以使用:

list.setSelectionForeground(Color.RED);

还有另一个类似的 API 用于设置所选项目的背景:

list.setSelectionBackground(Color.BLUE);

Just in case you want to change the Color of the selected item you can use:

list.setSelectionForeground(Color.RED);

there is another similar API for setting background of selected item:

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