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

Java编程

开发平台:

Java

  1. package infomanagement;
  2. import java.awt.*;
  3. import javax.swing.*;
  4. import com.borland.jbcl.layout.*;
  5. import java.awt.event.*;
  6. /**
  7.  * <p>Title: </p>
  8.  * <p>Description: </p>
  9.  * <p>Copyright: Copyright (c) 2003</p>
  10.  * <p>Company: </p>
  11.  * @author unascribed
  12.  * @version 1.0
  13.  */
  14. public class ScienceAcn extends JDialog {
  15.   private JPanel jPanel1 = new JPanel();
  16.   private XYLayout xYLayout1 = new XYLayout();
  17.   private JLabel jLabel1 = new JLabel();
  18.   private JLabel jLabel2 = new JLabel();
  19.   private JLabel jLabel3 = new JLabel();
  20.   private JTextField jTextField1 = new JTextField();
  21.   private JLabel jLabel4 = new JLabel();
  22.   private JTextField jTextField2 = new JTextField();
  23.   private JLabel jLabel5 = new JLabel();
  24.   private JTextField jTextField3 = new JTextField();
  25.   private JLabel jLabel6 = new JLabel();
  26.   private JTextField jTextField4 = new JTextField();
  27.   private JLabel jLabel7 = new JLabel();
  28.   private JTextField jTextField5 = new JTextField();
  29.   private JLabel jLabel8 = new JLabel();
  30.   private JButton jButton1 = new JButton();
  31.   private JButton jButton2 = new JButton();
  32.   public ScienceAcn(Frame frame, String title, boolean modal) {
  33.     super(frame, title, modal);
  34.     try {
  35.       jbInit();
  36.       pack();
  37.     }
  38.     catch(Exception ex) {
  39.       ex.printStackTrace();
  40.     }
  41.   }
  42.   public ScienceAcn() {
  43.     this(null, "", false);
  44.   }
  45.   private void jbInit() throws Exception {
  46.     jPanel1.setLayout(xYLayout1);
  47.     jLabel1.setForeground(Color.red);
  48.     jLabel1.setBorder(BorderFactory.createEtchedBorder());
  49.     jLabel1.setText("          理科成绩录入");
  50.     jLabel2.setBorder(BorderFactory.createEtchedBorder());
  51.     jLabel3.setForeground(Color.red);
  52.     jLabel3.setText("     数学");
  53.     jLabel4.setForeground(Color.red);
  54.     jLabel4.setText("     英语");
  55.     jLabel5.setForeground(Color.red);
  56.     jLabel5.setText("     语文");
  57.     jLabel6.setForeground(Color.red);
  58.     jLabel6.setText("     物理");
  59.     jTextField4.addActionListener(new java.awt.event.ActionListener() {
  60.       public void actionPerformed(ActionEvent e) {
  61.         jTextField4_actionPerformed(e);
  62.       }
  63.     });
  64.     jLabel7.setForeground(Color.red);
  65.     jLabel7.setText("     化学");
  66.     jLabel8.setBorder(BorderFactory.createEtchedBorder());
  67.     jButton1.setText("确定");
  68.     jButton2.setText("取消");
  69.     this.getContentPane().add(jPanel1, BorderLayout.CENTER);
  70.     jPanel1.add(jLabel1,       new XYConstraints(0, 1, 400, 26));
  71.     jPanel1.add(jLabel3,  new XYConstraints(20, 45, 90, 20));
  72.     jPanel1.add(jTextField1,    new XYConstraints(140, 45, 120, 20));
  73.     jPanel1.add(jLabel4,   new XYConstraints(20, 90, 90, 20));
  74.     jPanel1.add(jTextField2,   new XYConstraints(140, 90, 120, 20));
  75.     jPanel1.add(jLabel5,    new XYConstraints(20, 135, 90, 20));
  76.     jPanel1.add(jTextField3,    new XYConstraints(140, 135, 120, 20));
  77.     jPanel1.add(jLabel6,   new XYConstraints(20, 180, 90, 20));
  78.     jPanel1.add(jTextField4,   new XYConstraints(140, 180, 120, 20));
  79.     jPanel1.add(jLabel7,   new XYConstraints(20, 225, 90, 20));
  80.     jPanel1.add(jTextField5,      new XYConstraints(140, 225, 120, 20));
  81.     jPanel1.add(jLabel2, new XYConstraints(1, 26, 399, 275));
  82.     jPanel1.add(jLabel8,    new XYConstraints(1, 255, 397, 44));
  83.     jPanel1.add(jButton1,        new XYConstraints(200, 265, 90, 30));
  84.     jPanel1.add(jButton2,      new XYConstraints(300, 265, 90, 30));
  85.   }
  86.   void jTextField4_actionPerformed(ActionEvent e) {
  87.   }
  88. }