标签: eclipse swt e4
我正在尝试使用swt文本创建自定义文本框。当我运行它时,我会遇到异常。
org.eclipse.swt.SWTException:不允许子类化
我的代码是
public class CustomText extends Text{ CustomText(Composite parent, int style) { super(parent, style); } }
如何使用swt文本创建自定义文本字段?