我正在尝试实现一种方法,如果用户没有输入任何内容,它会像文本一样在控件周围绘制红色边框。我正在使用eclipse swt。我的方法看起来像这样:
protected void drawRedBorder(Control cont){
final Control control = cont;
cont.getParent().addPaintListener(new PaintListener(){
public void paintControl(PaintEvent e){
GC gc = e.gc;
Color red = new Color(null, 255, 0 ,0);
gc.setBackground(red);
Rectangle rect = control.getBounds();
Rectangle rect1 = new Rectangle(rect.x - 2, rect.y - 2,
rect.width + 4, rect.height + 4);
gc.setLineStyle(SWT.LINE_SOLID);
gc.fillRectangle(rect1);
}
});
}
它工作正常,当我在创建带有文本字段的对话框时调用它。但是它不起作用,当我在 checkInput() 之类的方法中调用它时,它会检查用户是否输入了某些内容。
我试图通过调用 redraw() 或 update() 来解决问题,但没有任何效果。任何线索我可以如何解决这个问题?