为 Text / Combo 变量启用这种装饰器的基本方法是什么(没有自定义 API)?
问问题
3355 次
2 回答
11
这是我设法做到的:
//---> input
myPackage = new Text(grpConnection, SWT.BORDER);
myPackage.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
//---> input event
myPackage.addModifyListener(new ModifyListener(){
// decorator for UI warning
ControlDecoration decorator;
/*
* In this anonymous constructor we will initialize what needs to be initialized only once, namely the decorator.
*/
{
decorator = new ControlDecoration(myPackage, SWT.CENTER);
decorator.setDescriptionText("Not a valid package");
Image image = FieldDecorationRegistry.getDefault().getFieldDecoration(FieldDecorationRegistry.DEC_ERROR).getImage();
decorator.setImage(image);
}
@Override
public void modifyText(ModifyEvent e) {
if (true) { // place your condition here
decorator.show();
}
else {
decorator.hide();
}
}
});
DEC_ERROR
forFieldDecorationRegistry
设置错误图标。
于 2013-05-30T09:00:48.563 回答
5
JFace 数据绑定会自动为您修饰无效输入:
ControlDecorationSupport.create(binding, SWT.TOP | SWT.LEFT);
这将用图标装饰控件并将工具提示文本设置为验证状态描述。在您的情况下,您不必手动处理所有这些修改侦听器。
于 2015-04-21T10:18:49.943 回答