我在 Eclipse RCP 的视图中有一个 Nebula Grid (org.eclipse.nebula.widgets.grid.Grid) 控件。我想让该网格的行标题可见,以便在运行时显示行号,如下图所示:
现在,我的要求是我想在行标题列上显示文本/字符,就像其他列标题(例如全名、名称等)一样。我怎样才能在星云网格上实现这一目标?或者说,这个Nebula Grid控件不可以吗?我的替代方案是什么?
I have a Nebula Grid (org.eclipse.nebula.widgets.grid.Grid) control in my view in Eclipse RCP. I would to make the row header of this grid visible so that, at runtime it displays row numbers like following photo:
Now, my requirement is that I want to display a text/char on the row header column, like other column headers (e.g. Full Name, Designation, etc). How can I achieve this on the Nebula Grid? Or, is it not possible by this Nebula Grid control? What could be my alternative?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终通过实现以下方法在nebulla Grid中实现了所需的功能:
public void Paint(GC paramGC, Object paramObject) {实现代码 }
内部接口:
setTopLeftRenderer(new IRenderer() { //接口方法}
如下:
其中,grdTable 是视图中正在使用的 Grid。
I finally achieved the required functionality in nebulla Grid by implementing the method :
public void paint(GC paramGC, Object paramObject) {implementaion code }
inside interface :
setTopLeftRenderer(new IRenderer() { //interface methods}
as follows :
Where, grdTable is the Grid being used in the view.
更方便的方法是使用GridTableViewer:
The more convenient way is to use GridTableViewer: