首页 > 代码库 > JSplitPane的简单实现
JSplitPane的简单实现
import java.awt.Color; import javax.swing.ImageIcon; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JList; import javax.swing.JSplitPane; public class fenye1 extends JFrame{ JLabel jl; JList js; JSplitPane jp; public static void main(String[] args) { // TODO Auto-generated method stub fenye1 f1=new fenye1(); } public fenye1() { String [] a={"软件开发","软件测试","数据挖掘"}; jl=new JLabel(new ImageIcon("image/23.jpg")); jl.setBackground(Color.pink); jl.setOpaque(true); js=new JList(a); jp=new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,js,jl); jp.setOneTouchExpandable(true); this.add(jp); this.setTitle("担心ss"); this.setSize(400,320); this.setLocation(100, 180); this.setResizable(true); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setVisible(true); } }
JSplitPane的简单实现
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。