- import javax.swing.JFrame;
- import javax.swing.JLabel;
- import javax.swing.ImageIcon;
- public class Ch84
- {
- JFrame fm;
- JLabel lb;
-
- Ch84()
- {
- lb=new JLabel(new ImageIcon(Ch84.class.getResource("pic/1.jpg")));
- lb.setBounds(0, 0, 399, 300);
-
- 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)
- {
- new Ch84();
- }
- }
複製代碼 |