gpt4 book ai didi

java - 文本和 JLabel

转载 作者:太空宇宙 更新时间:2023-11-04 06:46:43 26 4
gpt4 key购买 nike

我有一个包含图片的 JLabel,我使用 setText 方法为此 JLabel 设置文本。我的问题是我想选择刚刚设置的文本的位置。你有什么想法来实现这一点吗?

//This the code i have
this.label = new JLabel ();
this.label.setText("My text");
this.label.setForeground(Color.BLACK);
this.add(label);

最佳答案

你可以试试吗

public class LabelTextPos extends JLabel {

public static void main(String args[]) {
LabelTextPos label = new LabelTextPos();
JFrame frame = new JFrame();
frame.add(label);
frame.pack();
frame.setVisible(true);
}

@Override
public void paint(Graphics g) {
g.setColor(Color.BLACK);
g.drawString("Sample", 100, 100);
}
}

关于java - 文本和 JLabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23867713/

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