MainFrame.java~1~
上传用户:liming9091
上传日期:2014-10-27
资源大小:3376k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. package manpowersystem;
  2. import javax.swing.*;
  3. import java.awt.event.*;
  4. import java.awt.*;
  5. import com.borland.jbcl.layout.*;
  6. /**
  7.  * <p>Title: </p>
  8.  * <p>Description: </p>
  9.  * <p>Copyright: Copyright (c) 2003</p>
  10.  * <p>Company: </p>
  11.  * @author not attributable
  12.  * @version 1.0
  13.  */
  14. public class MainFrame extends JFrame {
  15.     XYLayout xYLayout1 = new XYLayout();
  16.     JPanel jPanel1 = new JPanel();
  17.     XYLayout xYLayout2 = new XYLayout();
  18.     JPanel jPanel2 = new JPanel();
  19.     public MainFrame() {
  20.         try {
  21.             jbInit();
  22.         }
  23.         catch(Exception e) {
  24.             e.printStackTrace();
  25.         }
  26.     }
  27.     public static void main(String[] args) {
  28.         MainFrame mainFrame = new MainFrame();
  29.         mainFrame.validate();
  30.         mainFrame.setLocation(200,150);
  31.         mainFrame.setSize(600,480);
  32.         mainFrame.setVisible(true);
  33.         mainFrame.pack();
  34.     }
  35.     private void jbInit() throws Exception {
  36.         xYLayout1.setWidth(525);
  37.         xYLayout1.setHeight(407);
  38.         this.getContentPane().setBackground(new Color(210, 138, 177));
  39.         this.setLocale(java.util.Locale.getDefault());
  40.         this.setResizable(true);
  41.         this.addWindowListener(new MainFrame_this_windowAdapter(this));
  42.         this.getContentPane().setLayout(xYLayout1);
  43.         jPanel1.setLayout(xYLayout2);
  44.         jPanel1.setBackground(new Color(210, 138, 177));
  45.         this.getContentPane().add(jPanel1, new XYConstraints(3, 4, 297, 402));
  46.         this.getContentPane().add(jPanel2,  new XYConstraints(304, 0, 220, 409));
  47.     }
  48.     void this_windowClosed(WindowEvent e) {
  49.         System.exit(0);
  50.     }
  51. }
  52. class MainFrame_this_windowAdapter extends java.awt.event.WindowAdapter {
  53.     MainFrame adaptee;
  54.     MainFrame_this_windowAdapter(MainFrame adaptee) {
  55.         this.adaptee = adaptee;
  56.     }
  57.     public void windowClosed(WindowEvent e) {
  58.         adaptee.this_windowClosed(e);
  59.     }
  60. }