带有 DefaultTableCellrenderer 和备用条纹荧光笔的 JXTable

发布于 2024-11-10 05:21:10 字数 256 浏览 0 评论 0原文

我更新到SwingX-1.6.2,但发现了1.6中没有出现的问题。 JXTable 单元格的颜色看起来很奇怪。我使用带有替代条纹 (HighlighterFactory.createAlternateStriping) 的荧光笔来设置颜色,并使用 DefaultTableCellRenderer 的子类来设置文本、字体...

从 1.6.1 开始,如果自定义单元格渲染器是,则似乎会忽略荧光笔的颜色放。文档说有一个 hack,但它不起作用。

有人对此有解决方案吗?

I updated to SwingX-1.6.2 but found problems that didn't appear in 1.6. The colors of the JXTable cells looks odd. I use a highlighter with an alternate striping (HighlighterFactory.createAlternateStriping) for the colors and a subclass of DefaultTableCellRenderer for settings text, font,...

Since 1.6.1 it seems that the colors of the highlighter are ignored if a custom cell renderer is set. The documentation says there is a hack, but it does not work.

Has anybody a solution for this?

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

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

发布评论

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

评论(3

白龙吟 2024-11-17 05:21:10

对于 SwingX 中的自定义单元格渲染,

  • 永远不要子类 xxRenderer
  • 永远不要子类 JXTable(也不是 JXList、JXTree/Table)

而是

  • 实现/使用 StringValue 来配置“内容”方面,如文本、图标 ..
  • 使用/实现荧光笔来配置“视觉”方面,如颜色、字体、画家(
  • 如果需要条件视觉装饰),请实现/使用 HighlightPredicate 并用它配置荧光笔
  • 用 StringValue 和/或荧光笔配置 xxRenderer

编辑

如果不支持需要渲染组件类型,方法是实现 ComponentProvider。这是一项艰巨的工作,因为提供者必须履行严格的合同(例如重置保证的属性值、尊重 StringValue,...请参阅 api 文档),但每个组件类型只需要一次。完成后,相同的提供程序可以在所有类型的集合组件中使用(列表 JXList、JXComboBox、JXTree/Table)

For custom cell rendering in SwingX,

  • never-ever subclass xxRenderer
  • never-ever subclass JXTable (nor JXList, JXTree/Table)

Instead

  • implement/use StringValue to configure the "content" aspects, like text, icon ..
  • use/implement Highlighter to configure the "visual" aspects, like color, font, painter
  • if conditional visual decoration are required, implement/use HighlightPredicate and configure the Highlighter with it
  • configure a xxRenderer with the StringValue and/or Highlighter

Edit:

if unsupported rendering component types are needed, the way to go is to implement a ComponentProvider. That's a bit of work, because the provider has to fulfill a strict contract (like resetting the guaranteed property values, respect the StringValue, ... see the api doc) but it's needed once per component type only. Once done, the same provider can be used in all types of collection components (list JXList, JXComboBox, JXTree/Table)

枫以 2024-11-17 05:21:10

我不知道 JXTable 如何突出显示,但您始终可以自己执行此操作。请参阅表格行渲染

I don't know how JXTable does its highlighting but you can always do this yourself. See Table Row Renderering.

不忘初心 2024-11-17 05:21:10

我无法在 SSCCE 中重现该问题,但在我的(非常复杂的)应用程序中,我通过使用继承自 SwingX 的 DefaultTableRenderer 而不是 java 的 默认TableCell渲染器

I wasn't able to reproduce the issue in a SSCCE, but I in my (very complex) application I solved it by using a renderer inherited from SwingX's DefaultTableRenderer instead of java's DefaultTableCellRenderer.

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