欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

swing分割窗口控件JSplitPane使用方法详解

程序员文章站 2023-12-10 15:03:10
本文为大家分享了jsplitpane的使用方法,供大家参考,具体内容如下 1、swing分割窗口控件jsplitpane,用来将窗口分割成两个部分。  2、分割后...

本文为大家分享了jsplitpane的使用方法,供大家参考,具体内容如下

1、swing分割窗口控件jsplitpane,用来将窗口分割成两个部分。 

2、分割后的窗口每个窗口只能放一个控件,想要方多个控件的话,可以在上面方一个jpane面板,这样就可以方多个控件。swing分割窗口控件jsplitpane,用来将窗口分割成两个部分。jsplitpane提供两个常数让你设置到底是要垂直分割还是水平分割。这两个常数分别是:horizontal_spit,vertical_split

3、使用方法:

①、setdividersize(int size)设置分割条的大小。

②、getdividersize()得到分割条的大小。

③、setdividerlocation(int size)按照百分比设置分割条的位置。

④、getorientation获得方向。

4、构造方法

jsplitpane():建立一个新的jsplitpane,里面含有两个默认按钮,并以水平方向排列,且没有continuous layout功能。

jsplitpane(int neworientation):建立一个指定水平或垂直方向切割jsplitpane,但没有continuous layout功能。

jsplitpnae(int neworientation,boolean newcontinuouslayout):建立一个指定水平或垂直方向切割的jsplitpane,且指定是否具有continuous layout功能。

jsplitpane(int neworientation,boolean newcontinuouslayout,component
newleftcomponent,component newrightcomponent):建立一个指定水平或垂直方向切割的jsplitpane,且指定显示区所要显示的组件,并设置是否continuous layout功能。

jsplitpane(int neworientation,component newleftcomponent,component newrightcomponent):
建立一个指定水平或垂直方向切割的jsplitpane,且指定显示区所要显示的组件,但没有continuous layout功能 。

上面所说的continuous layout意思是指当你拖曳切割面版的分隔线时,窗口内的组件是否会随着分隔线的拖曳而动态改变大小。newcontinuouslayout是一个boolean值,若设为true,则组件大小会随着分隔线的拖曳而一起改动;若设为false,则组件大小在分隔线停止改动时才确定。你也可以使用jsplitpane中的setcontinuouslayout()方法来设置此项目。

5、实例

package swing; 

import java.awt.event.componentadapter; 
import java.awt.event.componentevent; 

import javax.swing.jframe; 
import javax.swing.jsplitpane; 
import javax.swing.jpanel; 
public class mainframe extends jframe { 
 /** 
  * 
  */ 
 jsplitpane jsplitpane1 = new jsplitpane(); 
 jpanel jpanel1 = new jpanel(); 
 jpanel jpanel2 = new jpanel(); 
 private static final long serialversionuid = 1l; 
 public static void main(string[] args){ 
  new mainframe(); 
  } 

 public void myinit(){ 
  this.setdefaultcloseoperation(jframe.exit_on_close);//设定窗体关闭后自动退出进程 
  this.setsize(800,600);//设定窗体的默认尺寸 
  this.setextendedstate(jframe.maximized_both);//设定窗体状态为屏幕最大化,即全屏尺寸。 
  this.setvisible(true);//显示窗体 
  this.jsplitpane1.setdividerlocation(0.7);//设定分割面板的左右比例(这时候就生效了,如果放在setvisible(true)这据之前就不会有效果。) 
  this.addcomponentlistener(new componentadapter() { 

   public void componentresized(componentevent e) { 

    jsplitpane1.setdividerlocation(0.7); 
   } 
  }); 
 }  

 public mainframe() { 
  try { 

   jbinit(); 
   myinit(); 
  } catch (exception ex) { 
   ex.printstacktrace(); 
  } 
 } 
 private void jbinit() throws exception { 
  this.getcontentpane().add(jsplitpane1, java.awt.borderlayout.center); 
  jsplitpane1.add(jpanel1, jsplitpane.left); 
  jsplitpane1.add(jpanel2, jsplitpane.right); 
  jsplitpane1.setenabled(false); 
  jsplitpane1.setonetouchexpandable(true); 

 } 


} 

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。