gpt4 book ai didi

java - 为什么 JLabel 不显示下划线字符?

转载 作者:行者123 更新时间:2023-11-29 06:11:07 25 4
gpt4 key购买 nike

出于某种原因,JLabel 不显示下划线符号。为了实现这种行为,我需要做什么特别的事情吗?

不适用于 Windows、Linux、MacOS 和 Java 1.6.x

最佳答案

这是我用来查看是否有效的代码。尝试在您的机器上运行它。

import java.awt.*;
import javax.swing.*;

public class TestUnderscore
{
// Test routine.
public static void main(String[] args)
{
JFrame frame = new JFrame();
frame.getContentPane().setBackground(Color.yellow);
frame.getContentPane().add(new JLabel("Test_Underscore$$"));
frame.getContentPane().setLayout(new FlowLayout());
frame.setSize(450, 450);
frame.setVisible(true);
}
}

关于java - 为什么 JLabel 不显示下划线字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6819983/

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