下划线的 JLabel
我试图使JLabel下划线。我到处寻找,但我什么也没得到。即使在属性中,也没有为 JLabel 添加下划线的选项。我该怎么办?
我试图使JLabel下划线。我到处寻找,但我什么也没得到。即使在属性中,也没有为 JLabel 添加下划线的选项。我该怎么办?
JLabel label = new JLabel("<HTML><U>YOUR TEXT HERE</U></HTML>");
label.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
或
JLabel label = new JLabel("Underlined Label");
Font font = label.getFont();
Map attributes = font.getAttributes();
attributes.put(TextAttribute.UNDERLINE, TextAttribute.UNDERLINE_ON);
label.setFont(font.deriveFont(attributes));
JLabel label = new JLabel("Underlined Label");
Font font = label.getFont();
Map<TextAttribute, Object> attributes = new HashMap<>(font.getAttributes());
attributes.put(TextAttribute.UNDERLINE, TextAttribute.UNDERLINE_ON);
label.setFont(font.deriveFont(attributes));