- 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();
- }
複製代碼 |