为什么 setLocation() 不移动我的标签?
2022-09-04 07:29:49
我有以下代码,我尝试将 a 放在 .JLabel
JFrame
public class GUI extends JFrame
{
/**
*
* @param args
*/
public static void main(String args[])
{
new GUI();
}
/**
*
*/
public GUI()
{
JLabel addLbl = new JLabel("Add: ");
add(addLbl);
addLbl.setLocation(200, 300);
this.setSize(400, 400);
// pack();
setVisible(true);
}
}
它似乎没有移动到我想要的地方。