import java.awt.event.*;
import javax.swing.*;
import java.awt.*;
public class BackgroundImage extends JFrame
{
JScrollPane scrollPane;
ImageIcon icon;
Image image;
public BackgroundImage()
{
icon = new ImageIcon("???.jpg");
JPanel panel = new JPanel()
{
protected void paintComponent(Graphics g)
{
// Dispaly image at at full size
g.drawImage(icon.getImage(), 0, 0, null);
// Scale image to size of component
// Dimension d = getSize();
// g.drawImage(icon.getImage(), 0, 0, d.width, d.height, null);
// Fix the image position in the scroll pane
// Point p = scrollPane.getViewport().getViewPosition();
// g.drawImage(icon.getImage(), p.x, p.y, null);
super.paintComponent(g);
}
};
panel.setOpaque( false );
panel.setPreferredSize( new Dimension(400, 400) );
scrollPane = new JScrollPane( panel );
getContentPane().add( scrollPane );
JButton button = new JButton( "Hello" );
panel.add( button );
}
public static void main(String [] args)
{
BackgroundImage frame = new BackgroundImage();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(300, 300);
frame.setLocationRelativeTo( null );
frame.setVisible(true);
}
}
Raúl - [^BgTA^]'s Bookmarks tagged → View Popular
You are here: Diigo Home > Raúl - [^BgTA^]'s Bookmarks
Feng-GUI - Feng Shui for Graphic User Interfaces
Averigua que es lo más vistoso de tu web usando esta aplicación.
more fromwww.feng-gui.com
Optimizar imagenes para web
Servicio que optimiza las imágenes para la web
more fromsmushit.com
PICFONT - Add text to picture
Crea imagenes con el texto en la fuente que quieras
more frompicfont.com
PicApp - the best content for the best publishers
Banco de imagenes gratuito
more fromwww.picapp.com
ConvertIcon
Convert png to icon
more fromconverticon.com
Picitup Visual Image Search
Buscador de imagenes
more fromwww.picitup.com
KAVEWALL: STOCK PHOTOS
more fromwww.kavewall.com
Notation: * = Private bookmark and comment|… = Clipping [?] | … = Public highlight [?]
Raúl - [^BgTA^]'s Related Tags
See More Top Contributors
Related Groups on Diigo
-
List of Lightbox 65+ clones and versions available today
Over 65 Lightboxes, referen...
Items: 0 | Visits: 119
Created by: startoy83
-
Image Sites
List of sites where you can...
Items: 51 | Visits: 169
Created by: Tina Coffey
-
flickr
This list is for all my fli...
Items: 20 | Visits: 142
Created by: Michael Uleau


