本帖最後由 劉得恩 於 2016-3-26 17:49 編輯
- import javax.swing.*;
- public class Ch87 {
- private JFrame fm;
- private JLabel lb;
-
- Ch87()
- {
- fm=new JFrame("dfsdf");
- lb=new JLabel( new ImageIcon(Ch87.class.getResource("pic/Koala.jpg")) );
- fm.setVisible(true);
- fm.setResizable(false);
- fm.setLayout(null);
- lb.setBounds(0,0,399,300);
- fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- fm.setBounds(100,100,405,328);
- fm.add(lb);
- }
- public static void main(String[] args) {
- new Ch87();
- }
- }
複製代碼 |