2在nattable中树的根中的图像

时间:2016-07-26 09:12:24

标签: image tree nattable

我已使用

在我的一个列中的树体中插入了一个图像
 new TreeImagePainter(true, GUIHelper.getImage("right"), GUIHelper.getImage("right_down"), image);
在课程TreeConfiguration

,但我需要在根行旁添加一个图像。

此外,我需要动态地从其他类中获取此图像,其中已经读取了数据。事实证明,我不能,因为这个类是null,或者它应该比它应该更晚调用。你能帮我怎么做。

亲切的问候

1 个答案:

答案 0 :(得分:0)

使用节点图标等绘制树结构由IndentedTreeImagePainter完成。 TreeImagePainter用作内容画家(通常为文本)的装饰者。如果您需要其他图标,则需要将IndentedTreeImagePainter与另一个CellPainterDecorator打包在一起。 或者,如果附加图标应位于树图标的右侧,那么基础画家可能已经是CellPainterDecorator,它同时结合了ImagePainterTextPainter

如果您只想在根节点上显示该图标,则需要更多自定义,可能需要使用自定义画家。

对不起,我真的不了解你的要求。