在Swing中,可以使用HTML来标记标签上的单词。例如,如果我希望标签上的某个单词加粗或具有不同的颜色,我可以用HTML做到这一点。
SWT是否有相同的功能?如果我有一个标签的文字“快速的棕色狐狸跳过懒狗”,我想把“狐狸”的颜色改为棕色,我该怎么做?
答案 0 :(得分:7)
如果您确实需要Label
,可以使用以下代码。否则我会建议StyledText
(如评论中所述):
public static void main(String[] args) {
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
Label label = new Label(shell, SWT.NONE);
label.setText("Blue and not blue");
Color blue = display.getSystemColor(SWT.COLOR_BLUE);
final TextLayout layout = new TextLayout(display);
layout.setText("Blue and not blue");
final TextStyle style = new TextStyle(display.getSystemFont(), blue, null);
label.addListener(SWT.Paint, new Listener() {
@Override
public void handleEvent(Event event) {
layout.setStyle(style, 0, 3);
layout.draw(event.gc, event.x, event.y);
}
});
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
使用StyledText
,它看起来像这样:
public static void main(String[] args) {
final Display display = new Display();
final Shell shell = new Shell(display);
shell.setLayout(new FillLayout());
StyledText text = new StyledText(shell, SWT.NONE);
text.setEditable(false);
text.setEnabled(false);
text.setText("Blue and not blue");
Color blue = display.getSystemColor(SWT.COLOR_BLUE);
StyleRange range = new StyleRange(0, 4, blue, null);
text.setStyleRange(range);
shell.pack();
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}