gui编程实战--金山词霸 JSplitPane拆分表格属于容器类组件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38 |
//词霸 package
com.test; import javax.swing.*; import java.awt.*; public class Demo8_9 extends
JFrame{ //定义组件 JSplitPane jsp; JList jList; JLabel jl1; public
static void main(String[] args) { // TODO Auto-generated method stub Demo8_9 demo8_9= new
Demo8_9(); } public
Demo8_9(){ //创建组件 String []words={ "boy" , "girl" , "bird" }; jList= new
JList(words); jl1= new
JLabel( new
ImageIcon( "images/ciba.gif" )); //拆分窗格 jsp= new
JSplitPane(JSplitPane.HORIZONTAL_SPLIT,jList,jl1); //可以伸缩 jsp.setOneTouchExpandable( true ); //设置布局管理局 //默认布局border //添加组件 this .add(jsp); this .setSize( 400 , 300 ); this .setLocation( 200 , 200 ); this .setVisible( true ); } } |
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。