java中将布局分为左右两部分
发布网友
发布时间:2022-04-22 16:30
我来回答
共3个回答
热心网友
时间:2023-09-24 03:58
这种用JAVA提供的基本布局不容易实现,可以选择绝对定位的方法,就是你可以用组件的setbounds方法,把一个组件的坐标设为jpanel的左上角坐标,长度为jpanel的三分之二,宽度和jpanel宽度相同,即格式为setbounds(0,0,2/3jpanel长度,jpanel宽度)另一个组件的坐标设为第一个组件的右上角坐标,长度为jpanel的三分之一,宽度和jpanel宽度相同,即格式为setbounds(2/3jpanel长度,0,1/3jpanel长度,jpanel宽度)。
热心网友
时间:2023-09-24 03:59
那就用JSplitPane 吧...
=================================================
代码:
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import javax.swing.JFrame;
import javax.swing.JSplitPane;
public class Test {
public static void main(String[] args) {
JFrame frame=new JFrame("Test");
final JSplitPane jsp=new JSplitPane();
frame.add(jsp);
frame.setLocation(200,200);
frame.setSize(400,400);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jsp.setEnabled(false);
frame.setVisible(true);
frame.addComponentListener(new ComponentAdapter(){
public void componentResized(ComponentEvent e) {
jsp.setDividerLocation(0.67);
}
});
jsp.setDividerLocation(0.67);
}
}
热心网友
时间:2023-09-24 03:59
学习~~~~