gpt4 book ai didi

java - JFace:将字段装饰放置在字段内?

转载 作者:行者123 更新时间:2023-12-01 18:27:47 28 4
gpt4 key购买 nike

我目前正在使用 JFace 为数据库插件功能开发 GUI(由于线程问题,无法使用任何其他方法),并且我的任务是使 GUI 看起来尽可能与数据库字段相似。我需要在文本字段内放置一个星号,如下所示:

enter image description here

我尝试使用 FieldDecorator 方法来执行此操作,但这会将星号置于文本字段之外。有没有办法让它在文本字段内绘制?

最佳答案

您无法让字段装饰显示在控件内。

您可以做的是使用不带边框的 Text 控件,并将其放入带边框的 Composite 中。装饰也可以在复合 Material 内。设置复合背景颜色以匹配文本将使内容看起来像您想要的那样。

类似于:

Composite border = new Composite(composite, SWT.BORDER); 

GridLayout layout = new GridLayout();
layout.marginHeight = 0;
layout.marginWidth = 0;
layout.marginRight = 8; // Margin at right large enough for your decoration
border.setLayout(layout);

// Set border composite color to match Text background
border.setBackground(border.getDisplay().getSystemColor(SWT.COLOR_WHITE));

Text text = new Text(border, SWT.SINGLE);

ControlDecoration dec = new ControlDecoration(text, SWT.RIGHT | SWT.TOP, border);

dec.setImage(your image);
dec.show();

关于java - JFace:将字段装饰放置在字段内?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25454402/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com