JSplitPane的简单实现

Posted 猫儿爹

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的简单实现的主要内容,如果未能解决你的问题,请参考以下文章

代码片段 - Golang 实现简单的 Web 服务器

JSplitPane详解

第十二周

golang代码片段(摘抄)

IOS开发-OC学习-常用功能代码片段整理

VsCode 代码片段-提升研发效率