#JSplitPane

e825. 当JSplitPane改变大小时分配空间

Theweightofasplitpanecontrolsthebehaviorofthedividerwhenthesplitpaneisresized.Iftheweightis0,allextraspaceisgiventotherightorbottomcomponent.Iftheweightis1,alle...

e823. 创建JSplitPane

Asplitpanedividesitsspacebetweentwocomponents.Thesplitpanecontainsadividerthatallowstheusertocontroltheamountofspacedistributedtoeachcomponent.//Createaleft-rig...
代码星球 ·2021-02-12

e824. 获得和设置JSplitPane中的子组件

//Createaleft-rightsplitpaneJSplitPanehpane=newJSplitPane(JSplitPane.HORIZONTAL_SPLIT,leftComponent,rightComponent);//Createatop-bottomsplitpaneJSplitPanevpane=...

e827. 设置JSplitPane中分隔物的大小

Adividercanbenolessthanonepixelinsize.//Createaleft-rightsplitpaneJSplitPanepane=newJSplitPane(JSplitPane.HORIZONTAL_SPLIT,leftComponent,rightComponent);//Getcu...

e826. 获得和设置JSplitPane分开的位置

Thelocationofadividerismeasuredinpixelsfromeithertheleftedge(inthecaseofahorizontalsplitpane)orthetopedge(inthecaseofaverticalsplitpane).Therearetwowaystosetthe...