• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java 自定义树节点的图标(基础篇-实例351).zip

资源截图

代码片段和文件信息

package com.mingrisoft.jtable;

import java.awt.BorderLayout;
import java.awt.EventQueue;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.ImageIcon;
import javax.swing.Jframe;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTree;
import javax.swing.UIManager;
import javax.swing.border.EmptyBorder;
import javax.swing.tree.DefaultMutableTreeNode;
import javax.swing.tree.DefaultTreeModel;
import java.awt.Font;

public class NodeIcon extends Jframe {
    
    /**
     * 
     */
    private static final long serialVersionUID = -9048535408788781352L;
    private JPanel contentPane;
    private JTree tree;
    
    /**
     * Launch the application.
     */
    public static void main(String[] args) {
        UIManager.put(“Tree.openIcon“ new ImageIcon(“src/image/open.png“));
        UIManager.put(“Tree.closedIcon“ new ImageIcon(“src/image/closed.png“));
        UIManager.put(“Tree.l

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         232  2010-09-11 17:00  .classpath
     文件         379  2010-09-11 17:00  .project
     文件         775  2013-11-21 08:41  bin\com\mingrisoft\jtable\NodeIcon$1.class
     文件         715  2013-11-21 08:41  bin\com\mingrisoft\jtable\NodeIcon$2.class
     文件        3666  2013-11-21 08:41  bin\com\mingrisoft\jtable\NodeIcon.class
     文件        1012  2010-09-11 17:00  bin\image\closed.png
     文件        3956  2010-09-11 17:00  bin\image\leaf.png
     文件        2962  2010-09-11 17:00  bin\image\open.png
     文件        3607  2010-09-11 17:00  src\com\mingrisoft\jtable\NodeIcon.java
     文件        1012  2010-09-11 17:00  src\image\closed.png
     文件        3956  2010-09-11 17:00  src\image\leaf.png
     文件        2962  2010-09-11 17:00  src\image\open.png

评论

共有 条评论