如何获取 Eclipse RCP 中 SWT 表中的列号?
我的问题是我们如何在 Eclipse RCP 中的 SWT 表的选定行中找到当前选定的列号?
My question is How can we find the currently selected column number in the selected row of a SWT Table in Eclipse RCP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在
Listener
内 - 例如对于SWT.Selection
- 您可以使用viewer.getCell(...)
,如以下示例所示:Inside a
Listener
- e.g. forSWT.Selection
- you can useviewer.getCell(...)
as illustrated in the following example:如果您想确保在调用选择监听器之前更新列索引,那么 mousedown 事件也可以正常工作:
If you want to be sure that the columnindex is updated prior to calling the selectionlistener, then the mousedown event will also work fine: