- mport javax.swing.JFrame;
- import javax.swing.JLabel;
- import javax.swing.ImageIcon;
- public class Ch0a{
- JFrame fm;
- JLabel lb;
-
- Ch0a()
- {
- lb=new JLabel(new ImageIcon(Ch0a.class.getResource("pic/1.jpg")));
- lb.setBounds(0,0, 300, 300);
-
- fm=new JFrame("馬里苟斯!!!");
- fm.setBounds(100, 100, 305,325);
- fm.setResizable(false);
- fm.setVisible(true);
- fm.setLayout(null);
- fm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- fm.add(lb);
- }
-
- public static void main(String[] args) {
- new Ch0a();
- }
複製代碼 |