java GUI 问题 我该怎么设置页面布局使得组件在窗体放大时也在中间显示?

publicclassMainFrameextendsJFrameimplementsActionListener{/****/privatestaticfinallon... public class MainFrame extends JFrame implements ActionListener
{

/**
*
*/
private static final long serialVersionUID = 1L;
private JLabel welcome = new JLabel("通讯录");
private JPanel welcomejpanel=new JPanel();
private JButton sureJButton=new JButton("welcome");

Dimension screenSize=Toolkit.getDefaultToolkit().getScreenSize();
int screenWidth=screenSize.width;
int srceenHeight=screenSize.height;

public MainFrame()
{

//设置窗体相关属性
//设置窗口标题
this.setTitle("--个人通讯录--");
//设置窗口可拖动大小
this.setResizable(true);
//设置窗口大小
this.setSize(screenWidth/2,srceenHeight/2);
//设置窗口居于屏幕中央
setLocation((screenWidth-getWidth())/2,(srceenHeight-getHeight())/2);
//设置面板容器的布局策略为空
welcomejpanel.setLayout(null);
//设置面板容器背景色
welcomejpanel.setBackground(Color.BLUE);
sureJButton.setBounds(220, 250, 210, 110);
welcome.setBounds(250, 50, 200, 100);
//设置按钮的文本颜色
sureJButton.setForeground(Color.RED);
welcome.setForeground(Color.BLACK);
//设置标签和两个按钮的字体
sureJButton.setFont(new Font("宋体",Font.PLAIN,50));
welcome.setFont(new Font("楷体",Font.PLAIN,50));
//为按钮添加动作事件监听器
sureJButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
try {
MainTest.main(new String[0]);
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
new MainTest().validate();
MainFrame.this.dispose();
}
});

//将面板容器添加到内容窗格
this.add(welcomejpanel);
welcomejpanel.add(welcome);
welcomejpanel.add(sureJButton);
//为窗口添加关闭响应事件
this.addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});

//显示窗体
this.setVisible(true);

}

//主方法
public static void main(String []args)
{
new MainFrame();//创建登陆窗体
}
@Override
public void actionPerformed(ActionEvent arg0) {
// TODO Auto-generated method stub

}

}
展开
 我来答
碧血玉叶花
2015-05-22 · TA获得超过4976个赞
知道大有可为答主
回答量:6154
采纳率:0%
帮助的人:1691万
展开全部
要想随意布局就不余烂能使用布局管理器,直接setLayout( null );
添加组件后,对组件设置setBounds(...)
但是这种情况最好窗口大小不能变

另外一个是使用GridBagLayout,这个布局管理器相当复杂且强悍,要想用的很熟得下功夫

使用图片来布局是不可能的(虽然可以识别出区域来,但是没办法确定哪个组老毁芦件放在哪个位置)
使用文本还侍带差不多,最好使用XML定义(如果使用null布局有希望以后可以变动的话)
liuyz60
2015-05-19 · TA获得超过300个赞
知道小有建树答主
回答量:262
采纳率:77%
帮助的人:117万
展开全部
使用则誉举GridBagLayout,构造一个一行一列的表格,GridBagConstraints基孙碧本用默认值就虚纳可以实现了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式