简体   繁体   English

如何将图像添加到 JFrame 标题栏?

[英]How to add an image to a JFrame title bar?

I want to add an image (small icon) to the javax.swing.JFrame title bar.我想向javax.swing.JFrame标题栏添加一个图像(小图标)。

How can I do it?我该怎么做?

Since JPanel doesn't have a title bar, I'm assuming that you're referring to JFrame .由于JPanel没有标题栏,我假设您指的是JFrame That being said, use setIconImage(...) .话虽如此,请使用setIconImage(...)


Here is an example of using setIconImages() .这是使用setIconImages()的示例。

import java.awt.Image;
import javax.swing.*;
import javax.imageio.ImageIO;

import java.net.URL;
import java.util.*;

class FrameIcons {

    public static void main(String[] args) throws Exception {
        URL url16 = new URL("http://i.stack.imgur.com/m0KKu.png");
        URL url32 = new URL("http://i.stack.imgur.com/LVVMb.png");

        final List<Image> icons = new ArrayList<Image>();
        icons.add(ImageIO.read(url16));
        icons.add(ImageIO.read(url32));

        SwingUtilities.invokeLater( new Runnable() {
            public void run() {
                JFrame f = new JFrame("Frame Icons");
                f.setIconImages(icons);
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.setLocationByPlatform(true);
                f.setSize(200,100);
                f.setVisible(true);
            }
        });
    }
}

Frame using 16x16 icon使用 16x16 图标的框架

在此处输入图片说明

Application tabbing using the 32x32 icon使用 32x32 图标的应用程序选项卡

在此处输入图片说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM