A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

package com.gui2;
import java.awt.*;
import javax.swing.*;
public class Demo1 extends JFrame{

        JSplitPane jsp;
        JList jlist;
        JLabel jl;
        public static void main(String[] args) {
                // TODO Auto-generated method stub
               
                Demo1 demo1=new Demo1();

        }
    public Demo1()
    {
            String words[]={"boy","girl","hello","people"};
            jlist=new JList(words);
           
            //插入图片
            jl=new JLabel(new ImageIcon("picture.jpg"));
           
            //拆分窗格
            jsp=new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,jlist,jl);
            //可以移动
            jsp.setOneTouchExpandable(true);
            this.add(jsp);
           
            this.setSize(400, 300);
            this.setLocation(200, 200);
            this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            this.setVisible(true);
    }
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马