如何创建一个带有多行标签的 org.eclipse.jface.preference.BooleanFieldEditor?
ff。不起作用。 “第二行”与“第一行”在同一行上呈现。更重要的是,两者之间没有任何空间。
new BooleanFieldEditor("Name", "First line\nSecond line", getFieldEditorParent());
The ff. does not work. "Second line" is rendered on the same line as "First line". What's more is that there is no space between the two.
new BooleanFieldEditor("Name", "First line\nSecond line", getFieldEditorParent());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
BooleanFieldEditor 使用 SWT 标签。您不能为这种类型的小部件指定多行。
我建议您需要通过子类化 FieldEditor 来创建自定义实现。
有两件事可以帮助解决这个问题:
The BooleanFieldEditor uses an SWT Label. You can't specify multiple lines for this type of widget.
I would suggest that you will need to create a custom implementation by subclassing FieldEditor.
Two things to help with this: