关于java layout的问题,请问怎样将一个jpanel分成左右两部分,其中左边占jpanel的3分之2,右边3分之1
3个回答
展开全部
这种用JAVA提供的基本布局不容易实现,可以选择绝对定位的方法,就是你可以用组件的setbounds方法,把一个组件的坐标设为jpanel的左上角坐标,长度为jpanel的三分之二,宽度和jpanel宽度相同,即格式为setbounds(0,0,2/3jpanel长度,jpanel宽度)另一个组件的坐标设为第一个组件的右上角坐标,长度为jpanel的三分之一,宽度和jpanel宽度相同,即格式为setbounds(2/3jpanel长度,0,1/3jpanel长度,jpanel宽度)。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
那就用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);
}
}
=================================================
代码:
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);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
学习~~~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询