java中设置位置的方法setLocation(x,y)不管用,请高手指教! 5
publicclassGameextendsJFrame{publicGame(Stringtxt){super();inta=200;intb=200;setSize(...
public class Game extends JFrame{
public Game(String txt){
super();
int a=200;
int b=200;
setSize(500,400);
setLocationRelativeTo(null);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
JPanel jp=new JPanel();
JButton jb=new JButton(txt);
jb.setLocation(a,b);
jp.add(jb);
setContentPane(jp);
setVisible(true);
} 展开
public Game(String txt){
super();
int a=200;
int b=200;
setSize(500,400);
setLocationRelativeTo(null);
setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
JPanel jp=new JPanel();
JButton jb=new JButton(txt);
jb.setLocation(a,b);
jp.add(jb);
setContentPane(jp);
setVisible(true);
} 展开
展开全部
JPanel设置setlocation干嘛?setLocation是JFrame里面的方法。直接用this.setLocation(a,b)。另外我想问下a,b是什么意思?
追问
我就是要改变JButton的位置,你说该怎么设置吧?改变它在窗体中的坐标。
追答
JButton的位置通过布局管理器来设置的啊,有三种,FlowLayout BorderLayout GridLayout,自己去找找参考书看看吧。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询