Java JFrame Icon loadIMageIconToPanel(JFrame frame, JPanel panel, ImageIcon icon)

Here you can find the source of loadIMageIconToPanel(JFrame frame, JPanel panel, ImageIcon icon)

Description

load I Mage Icon To Panel

License

Open Source License

Declaration

public static void loadIMageIconToPanel(JFrame frame, JPanel panel, ImageIcon icon) 

Method Source Code

//package com.java2s;
/*//www .  j a  v a 2  s. co m
 * Copyright (C) 2014. EMBL, European Bioinformatics Institute
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class Main {
    public static void loadIMageIconToPanel(JFrame frame, JPanel panel, ImageIcon icon) {

        JLabel label = new JLabel();
        label.setIcon(icon);
        panel.add(label);
        frame.add(panel);
        frame.setVisible(true);
    }
}

Related

  1. getResourceIcon(JFrame fr, String name, Class callingClass)
  2. SET_FRAME_ICON(JFrame f, String iconPath)
  3. setApplicationIcon(JFrame frame)
  4. setDefaultIcon(final JFrame window, final String imagepath)
  5. setIcon(javax.swing.JFrame jFrame, String icon)