我有一个简单的 jframe,其中包含 jbutton 和 jtextfield 和 jlabe。但是,当我想为每个人设置位置时,不要移动!
public class myFrame extends JFrame{
JButton okButton;
JPanel mypanel;
public myFrame(){
okButton=new JButton("OK");
mypanel=new JPanel();
okButton.setLocation(100, 200);
mypanel.add(okButton);
this.add(mypanel);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(500, 400);
setVisible(true);
}
public static void main(String[] args){
new myFrame();
}
}