標題:
ImageIcon 類別 (一)
[打印本頁]
作者:
tonyh
時間:
2015-7-18 14:05
標題:
ImageIcon 類別 (一)
本帖最後由 tonyh 於 2015-7-25 14:54 編輯
試利用 javax.swing 套件下的 ImageIcon 類別, 在視窗中置入圖片.
[attach]1311[/attach]
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class Ch81 {
private JFrame fm;
private JLabel lb;
private ImageIcon icon;
Ch81()
{
icon=new ImageIcon(Ch81.class.getResource("pic/01.jpg"));
lb=new JLabel(icon);
lb.setBounds(0, 0, 399, 300);
//左、右、下方的邊框佔 3 像素;上方的標題列佔 25 像素
fm=new JFrame("ImageIcon 類別");
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(lb);
}
public static void main(String[] args) {
Ch81 app=new Ch81();
}
}
複製代碼
作者:
劉泳鱔
時間:
2015-7-25 14:38
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class Ch81
{
private JFrame fm;
private JLabel lb;
private ImageIcon icon;
Ch81()
{
icon=new ImageIcon(Ch81.class.getResource("pic/01.jpg"));
lb=new JLabel(icon);
lb.setBounds(0, 0, 399, 300);
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(lb);
}
public static void main(String[] args)
{
Ch81 app=new Ch81();
}
}
複製代碼
作者:
許逸群
時間:
2015-7-25 14:47
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class Ch81
{
private JFrame fm;
private JLabel lb;
private ImageIcon icon;
Ch81()
{
icon=new ImageIcon(Ch81.class.getResource("pic/01.jpg"));
lb=new JLabel(icon);
lb.setBounds(0, 0, 399, 300);
fm.setBounds(100, 100, 405, 328);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(lb);
}
public static void main(String[] args)
{
Ch81 app=new Ch81();
}
}
複製代碼
作者:
林以諾
時間:
2015-7-28 19:27
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
public class ch81
{
private JFrame fr;
private JLabel la;
private ImageIcon ii;
ch81()
{
ii=new ImageIcon(ch81.class.getResource("01.jpg"));
la=new JLabel(ii);
la.setBounds(0, 0, 399, 300);
fr=new JFrame("何花");
fr.setBounds(100, 100, 405, 328);
fr.setVisible(true);
fr.setResizable(false);
fr.setLayout(null);
fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fr.add(la);
}
public static void main(String[] args)
{
ch81 app=new ch81();
}
}
複製代碼
作者:
張瀚仁
時間:
2015-7-28 19:32
import javax.swing.*;
public class Ch81 {
private JFrame fm;
private JLabel lb;
private ImageIcon icon;
Ch81()
{
icon=new ImageIcon(Ch81.class.getResource("pic/2stiens gate.jpg"));
lb=new JLabel(icon);
lb.setBounds(5,5,1290,1080);
fm=new JFrame("命運石之門");
fm.setBounds(100,100,1300,1084);
fm.setVisible(true);
fm.setResizable(false);
fm.setLayout(null);
fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
fm.add(lb);
}
public static void main(String[] args) {
Ch81 app=new Ch81();
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2