返回列表 發帖
  1. import javax.swing.JFrame;
  2.          import javax.swing.JLabel;
  3.          import javax.swing.ImageIcon;
  4. public class Ch81
  5. {
  6.                 private JFrame fm;
  7.         private JLabel lb;
  8.         private ImageIcon icon;
  9.         
  10.         Ch81()
  11.         {
  12.                 icon=new ImageIcon(Ch81.class.getResource("pic/01.jpg"));
  13.                
  14.                 lb=new JLabel(icon);
  15.                 lb.setBounds(0, 0, 399, 300);
  16.                
  17.                 fm.setBounds(100, 100, 405, 328);   
  18.                 fm.setVisible(true);
  19.                 fm.setResizable(false);
  20.                 fm.setLayout(null);
  21.                 fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.                 fm.add(lb);
  23.         }
  24.         public static void main(String[] args)
  25.         {
  26.             Ch81 app=new Ch81();
  27.             }
  28. }
複製代碼

TOP

返回列表