JAVA 在面板上放两个按钮,把面板加入框架中,然后显示框架。

2024-11-28 20:39:40
推荐回答(2个)
回答1:

要加个布局:

import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JButton;

class ButtonFrame extends JFrame
{
ButtonFrame()
{
super("按钮和框架");
this.setLayout(new FlowLayout()); // 加上这一句
JButton jb1=new JButton("确定");
add(jb1);
JButton jb2=new JButton("取消");
add(jb2);
}
}
public class test
{
public static void main(String[] args)
{
ButtonFrame bf=new ButtonFrame();
bf.setSize(200,150);
bf.setLocation(400, 300);
bf.setVisible(true);
}
}

或者你用其他布局,用setLayout(null)的话就得自己设定按钮的位置,用楼上说的,setLocation

回答2:

通过setLocation(int x,int y)
可以设置他们的坐标,如果还不行的话,给我说下
如:JButton sj=new JButton();
sj.set(20,49);
设置他离窗体的水平距离为20.垂直距离为49;