我会保持简短,因为我所要求的只是一行代码。这是我的问题,所以为了让我的 Jlabel 出现,我使用 .setBounds
我的问题是我无法猜测我的文本的宽度,所以我需要做什么才能让我的 setBounds 将 Width 和 Height 作为文本。
如果我没有很好地解释这一点,请说,我会尝试解释更多。
Some1 想要一个例子,所以这里是:
我的代码片段:
JLabel poisonDescription = new JLabel("This is the poison icon, when this appears...");
//My declaration.. the next is inside a void.
poisonDescription.setBounds(50, 50, 400, 20);
add(poisonDescription);
它非常简单,我希望将边界调整为字体的大小!
哦,是的,另一个问题...我如何制作 JLabel 多行?