在elipse-rcp应用程序中,我在jface表中为行设置背景颜色,但我不希望选择更改此颜色。我希望能够为所选行指定颜色更改。
答案 0 :(得分:7)
根据this thread,对于JFace Viewers
(ListViewer
,Table
,Tree
),使用EraseItem
和{{1} } events
“Custom Drawing Table and Tree Items”
一文中详述的一般原则
MeasureItem
:允许客户自定义绘制单元格的背景和/或选择,并影响是否应绘制单元格的前景
答案 1 :(得分:6)
table.addListener(SWT.EraseItem, new Listener() {
public void handleEvent(Event event) {
event.detail &= ~SWT.HOT;
if ((event.detail & SWT.SELECTED) == 0) return; /// item not selected
Table table =(Table)event.widget;
TableItem item =(TableItem)event.item;
int clientWidth = table.getClientArea().width;
GC gc = event.gc;
Color oldForeground = gc.getForeground();
Color oldBackground = gc.getBackground();
gc.setBackground(colorBackground);
gc.setForeground(colorForeground);
gc.fillRectangle(0, event.y, clientWidth, event.height);
gc.setForeground(oldForeground);
gc.setBackground(oldBackground);
event.detail &= ~SWT.SELECTED;
}
});