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

Java编程

开发平台:

Java

  1. package uml_gaokai;
  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 QueryOrderForm 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 JLabel jLabel4 = new JLabel();
  21.   private JTextField jTextField1 = new JTextField();
  22.   private JTextField jTextField2 = new JTextField();
  23.   private JTextField jTextField3 = new JTextField();
  24.   private JTextField jTextField4 = new JTextField();
  25.   private JButton jButton1 = new JButton();
  26.   private JButton jButton2 = new JButton();
  27.   private JButton jButton3 = new JButton();
  28.   private JButton jButton4 = new JButton();
  29.   private JButton jButton5 = new JButton();
  30.   public QueryOrderForm(Frame frame, String title, boolean modal) {
  31.     super(frame, title, modal);
  32.     try {
  33.       jbInit();
  34.       pack();
  35.     }
  36.     catch(Exception ex) {
  37.       ex.printStackTrace();
  38.     }
  39.   }
  40.   public QueryOrderForm() {
  41.     this(null, "", false);
  42.   }
  43.   private void jbInit() throws Exception {
  44.     jPanel1.setLayout(xYLayout1);
  45.     jLabel1.setText("订货商品名称");
  46.     jLabel2.setText("商品ID");
  47.     jLabel3.setText("订货日期");
  48.     jLabel4.setText("订货状态");
  49.     jButton1.setText("查询");
  50.     jButton1.addActionListener(new java.awt.event.ActionListener() {
  51.       public void actionPerformed(ActionEvent e) {
  52.         jButton1_actionPerformed(e);
  53.       }
  54.     });
  55.     jButton2.setText("查询");
  56.     jButton3.setText("查询");
  57.     jButton4.setText("查询");
  58.     jButton5.setText("退出");
  59.     this.getContentPane().add(jPanel1, BorderLayout.CENTER);
  60.     jPanel1.add(jTextField1,    new XYConstraints(122, 20, 110, 24));
  61.     jPanel1.add(jTextField4,     new XYConstraints(122, 156, 109, 25));
  62.     jPanel1.add(jButton1,   new XYConstraints(281, 20, 61, 23));
  63.     jPanel1.add(jButton3,     new XYConstraints(282, 112, 60, 21));
  64.     jPanel1.add(jButton4,     new XYConstraints(283, 156, 60, 21));
  65.     jPanel1.add(jButton2,      new XYConstraints(281, 65, 61, 22));
  66.     jPanel1.add(jLabel1,  new XYConstraints(28, 20, 92, 24));
  67.     jPanel1.add(jTextField2,     new XYConstraints(122, 65, 111, 25));
  68.     jPanel1.add(jLabel3,     new XYConstraints(28, 112, 92, 24));
  69.     jPanel1.add(jTextField3,     new XYConstraints(122, 112, 111, 25));
  70.     jPanel1.add(jLabel4,    new XYConstraints(28, 156, 96, 24));
  71.     jPanel1.add(jLabel2,   new XYConstraints(28, 65, 95, 26));
  72.     jPanel1.add(jButton5,  new XYConstraints(291, 205, 75, 22));
  73.   }
  74.   void jButton1_actionPerformed(ActionEvent e) {
  75.   }
  76. }