JFace/SWT 多行 TableViewer 行
是否可以在 JFace tableViewer 中获取多行(例如 2 行)行?我希望我的长文本部分分布在两行之间,而我的短行在单元格中垂直对齐。我怎样才能达到这个结果?
Is it possible to get multiline (say 2-line) row in JFace tableViewer? I want my long text part spreaded between two lines, and my short lines aligner vertically in the cell. How can I achive that result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
表控件本身不支持这一点。您必须自己绘制这些单元格的内容。有一个关于如何执行此操作的官方示例 (Snippet006TableMultiLineCells)。
The table control itself does not support this. You will have to paint the content of those cells yourself. There's an official example (Snippet006TableMultiLineCells) on how to do that.