ورود

View Full Version : اضافه تصویر به فرم



mamali5030
پنج شنبه 16 آذر 1391, 11:13 صبح
سلام و درود به همه گی!!
من چطور میتونم یه تصویر به فرمم (frame) اضافه کنم؟؟:متفکر::متفکر::متفکر:
اگه میشه یه نمونه کد بیارید.:لبخند:

ravand
جمعه 17 آذر 1391, 08:48 صبح
import java.awt.*;
import javax.swing.*;
public class be extends JFrame {
public be(){
super("test be on a frame");
setSize(800, 600);
setDefaultCloseOperation(EXIT_ON_CLOSE);
ImageIcon img=new ImageIcon("F:\\jdk\\bin\\ali.gif");
JLabel imgLabel=new JLabel(img);

getContentPane().add(imgLabel);
setVisible(true);
}
public static void main(String args[]){
new be();
}
}