How to add Hyperlink in SWT Table`s column?

后端 未结 3 1303
终归单人心
终归单人心 2021-01-05 14:28

How to add Hyperlink in SWT Table column ? I`m using org.eclipse.swt.widgets.Table class.

Is there any way to do this without using TableViewer, JFace ?

I tr

3条回答
  •  青春惊慌失措
    2021-01-05 15:02

    Yes, that is certainly possible. To do this you have to implement SWT.ItemPaint (and possibly also SWT.ItemErase and SWT.ItemMeassure).

    It is easier with TableView though if you use the correct LabelProvider...

提交回复
热议问题