Java布局问题。
我想在JFrame中加入两个JPanel,这两个JPanel充满整个窗口并左右无缝相接,左边的JPanel占据62.5%的区域,右边的JPanel占据37.5%的区域。要...
我想在JFrame中加入两个JPanel,这两个JPanel充满整个窗口并左右无缝相接,左边的JPanel占据62.5%的区域,右边的JPanel占据37.5%的区域。要求最大化时,两个区域的比例依然是5:3,即比例不变。
问1:采用何种布局方法最好?
问2:采用Gridbaglayout如何实现? 展开
问1:采用何种布局方法最好?
问2:采用Gridbaglayout如何实现? 展开
2个回答
展开全部
这种就是采用GridBagLayout最好啊,按着比例进行排列的方案
代码如下:
import java.awt.*;
import javax.swing.*;
public class GridBagLayoutDemo extends JFrame {
public GridBagLayoutDemo() {
GridBagLayout layout = new GridBagLayout();
this.setLayout(layout);
GridBagConstraints c = new GridBagConstraints();
c.fill = GridBagConstraints.BOTH; //双向拉伸
c.weightx = 0.625; //横向比例
c.weighty = 1; //纵向比例
JPanel redPanel = createPanel(Color.red);
layout.setConstraints(redPanel, c);
this.add(redPanel);
c.weightx = 0.375; //横向比例
c.weighty = 1; //纵向比例
JPanel greenPanel = createPanel(Color.green);
layout.setConstraints(greenPanel, c);
this.add(greenPanel);
this.setSize(500, 300);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
private JPanel createPanel(Color c) {
JPanel panel = new JPanel();
panel.setOpaque(true);
panel.setBackground(c);
return panel;
}
public static void main(String[] args) {
new GridBagLayoutDemo().setVisible(true);
}
}
代码如下:
import java.awt.*;
import javax.swing.*;
public class GridBagLayoutDemo extends JFrame {
public GridBagLayoutDemo() {
GridBagLayout layout = new GridBagLayout();
this.setLayout(layout);
GridBagConstraints c = new GridBagConstraints();
c.fill = GridBagConstraints.BOTH; //双向拉伸
c.weightx = 0.625; //横向比例
c.weighty = 1; //纵向比例
JPanel redPanel = createPanel(Color.red);
layout.setConstraints(redPanel, c);
this.add(redPanel);
c.weightx = 0.375; //横向比例
c.weighty = 1; //纵向比例
JPanel greenPanel = createPanel(Color.green);
layout.setConstraints(greenPanel, c);
this.add(greenPanel);
this.setSize(500, 300);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
private JPanel createPanel(Color c) {
JPanel panel = new JPanel();
panel.setOpaque(true);
panel.setBackground(c);
return panel;
}
public static void main(String[] args) {
new GridBagLayoutDemo().setVisible(true);
}
}
展开全部
用java带的布局我不会弄,他的那些布局都是平均分配的,我建议setlayout(null),然后根据jframe的长来算出来jpanel的长,这样绝对不会出错,而且比较简单
追问
你是说每个控件都设置它的setLocation()方法吗?这样做的话,当最大化JFrame或用鼠标拉伸JFrame的大小,如何控制控件随着JFrame大小的变化而更正自己的位置呢?
追答
要是用null布局的话是不会变化的,所以需要你手写,当窗口大小变化时,监听他的事件,然后在事件中重新布局,其实java自带的也是这么干的,只是他帮咱写好了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询